/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #2c5f7c;
	--primary-dark: #1e4255;
	--primary-light: #3d7fa3;
	--secondary-color: #4a9d5f;
	--text-color: #333;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--border-color: #e0e0e0;
	--success-color: #28a745;
	--error-color: #dc3545;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header and Navigation */
header {
	background-color: var(--white);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-img {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo h1 {
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.logo .motto {
	font-size: 0.9rem;
	color: var(--text-light);
	font-weight: 400;
	font-style: italic;
	margin: 0;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
	padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	color: var(--white);
	padding: 5rem 0;
	text-align: center;
}

.hero-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #3d7d4d;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-large {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

/* Sections */
section {
	padding: 4rem 0;
}

.section-title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--primary-color);
	font-weight: 700;
}

/* Services Section */
.services {
	background-color: var(--bg-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* Importance Section */
.importance {
	background-color: var(--white);
}

.importance-content {
	max-width: 900px;
	margin: 0 auto;
}

.importance-text h3 {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.importance-text h3:first-child {
	margin-top: 0;
}

.importance-text p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

/* CTA Section */
.cta {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	color: var(--white);
	text-align: center;
	padding: 4rem 0;
}

.cta h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.cta p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

/* Contact Section */
.contact-section {
	padding: 4rem 0;
	background-color: var(--bg-light);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

.contact-info {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	height: fit-content;
}

.contact-info h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.info-item {
	margin-bottom: 2rem;
}

.info-item strong {
	display: block;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.info-item p {
	color: var(--text-light);
	line-height: 1.8;
}

.contact-form-wrapper {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-color);
	font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: 5px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s;
	background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 5px;
	text-align: center;
	font-weight: 500;
}

.form-message.success {
	background-color: #d4edda;
	color: var(--success-color);
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background-color: #f8d7da;
	color: var(--error-color);
	border: 1px solid #f5c6cb;
}

/* Footer */
footer {
	background-color: var(--primary-dark);
	color: var(--white);
	text-align: center;
	padding: 2rem 0;
}

footer p {
	opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
	.navbar .container {
		flex-direction: column;
		gap: 1rem;
	}

	.logo-img {
		height: 40px;
	}

	.nav-menu {
		gap: 1rem;
	}

	.hero-content h2 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.cta h2 {
		font-size: 1.75rem;
	}
}

@media (max-width: 480px) {
	.logo-img {
		height: 35px;
	}

	.logo h1 {
		font-size: 1.25rem;
	}

	.logo .motto {
		font-size: 0.8rem;
	}

	.hero {
		padding: 3rem 0;
	}

	.hero-content h2 {
		font-size: 1.75rem;
	}

	section {
		padding: 3rem 0;
	}

	.contact-info,
	.contact-form-wrapper {
		padding: 1.5rem;
	}
}
