body {
	font-family: Arial, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 16px;
	box-sizing: border-box;
	background-color: #f4f4f4;
}

h1 {
	font-size: 24px;
	margin-bottom: 8px;
}
.header,
.footer {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.header span:first-child {
	color: #0238a3;
	font-weight: bold;
}
.header span:last-child {
	color: #c50d0d;
	font-weight: bold;
}
.header p {
	font-size: 16px;
	margin: 4px 0;
	color: #555;
}

.footer p {
	font-size: 16px;
	color: #555;
}
.main-page {
	background-color: #fff;
	min-width: 100%;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

#contact-form {
	display: flex;
	flex-direction: column;
}

#contact-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

#contact-form input,
#contact-form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px; /* prevents iOS zoom */
}

#contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

#contact-form input:focus,
#contact-form textarea:focus {
	border-color: #46a0f5;
	outline: 2px solid #4498e7;
	outline-offset: 2px;
}

input[type='submit'] {
	width: 100%;
	padding: 14px;
	background-color: #46a0f5;
	color: white;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

input[type='submit']:hover {
	background-color: #2f87db;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
	.main-page {
		min-width: 500px;
		padding: 24px;
	}
}

/* Desktop */
@media (min-width: 1024px) {
	.main-page {
		min-width: 550px;
		padding: 24px;
	}
}
