/* Font styles */
body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: 'Poppins', sans-serif;
}

/* Logo Section */
.logo-container {
	text-align: center;
	padding: 20px;
	background-color: #fff;
}

.logo {
	max-width: 180px;
	height: auto;
}

/* Hero Section */
.hero {
	background: linear-gradient(to right, #1a2a4f, #2c3e60, #3b4f72);
	color: white;
	padding: 80px 20px;
	text-align: center;
}

	.hero h1 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.hero p {
		font-size: 1.2rem;
		margin-bottom: 30px;
	}

.cta-button {
	background-color: #800000;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background 0.3s ease;
}

	.cta-button:hover {
		background-color: #660000;
	}

/* About Section */
.about {
	padding: 60px 20px;
	max-width: 800px;
	margin: auto;
	text-align: center;
}

	.about h2 {
		font-size: 2rem;
		margin-bottom: 20px;
		color: #800000;
	}

.values {
	list-style: none;
	padding: 0;
}

	.values li {
		background-color: #f8e6e6;
		margin: 10px 0;
		padding: 10px;
		border-left: 5px solid #800000;
		border-radius: 5px;
	}

/* Services Section */
.services {
	padding: 60px 20px;
	background-color: #ffffff;
	text-align: center;
}

	.services h2 {
		font-size: 2rem;
		margin-bottom: 40px;
		color: #800000;
	}

.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: auto;
}

.card {
	background-color: #f0f2f8;
	padding: 20px;
	border-radius: 8px;
	border-top: 4px solid #800000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
	padding: 60px 20px;
	text-align: center;
	background-color: #f0f4f8;
}

	.testimonials h2 {
		font-size: 2rem;
		margin-bottom: 20px;
		color: #800000;
	}

/* Subscribe Section */
.subscribe {
	padding: 60px 20px;
	text-align: center;
	background-color: #f8e6e6;
}

	.subscribe h2 {
		font-size: 2rem;
		margin-bottom: 10px;
		color: #800000;
	}

	.subscribe form {
		margin-top: 20px;
	}

	.subscribe input[type="email"] {
		padding: 10px;
		width: 250px;
		max-width: 80%;
		border: 1px solid #ccc;
		border-radius: 5px;
	}

	.subscribe button {
		padding: 10px 20px;
		margin-left: 10px;
		background-color: #800000;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}

		.subscribe button:hover {
			background-color: #660000;
		}

/* Footer */
.footer {
	background-color: #1a2a4f;
	color: white;
	text-align: center;
	padding: 20px;
	font-size: 0.9rem;
}
