header {
	width: 1000px;
	margin: 50px auto;
	text-align: center;
}
header h1 {
	margin-bottom: 20px;
	font-size: 60px;
}
header p {
	font-size: 22px;
	color: #555;
	line-height: 1.6;
}

section#approach-details {
	width: 1000px;
	margin: 80px auto;
}

.approach-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.card {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
	border-left: 5px solid #a72222;
}

.card:hover {
	transform: translateY(-5px);
}

.card i {
	font-size: 40px;
	color: #a72222;
	margin-bottom: 20px;
	display: block;
}

.card h2 {
	font-size: 28px;
	margin-bottom: 15px;
	font-weight: bold;
}

.card p {
	font-size: 18px;
	line-height: 1.6;
	color: #666;
}

.why-us {
	width: 1000px;
	margin: 100px auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	border-top: 1px solid #eee;
	padding-top: 60px;
}
.why-us div h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #a72222;
}
.why-us div p {
	font-size: 17px;
	line-height: 1.5;
}

.cta-section {
	text-align: center;
	padding: 100px 20px;
	background: #f9f9f9;
	margin-top: 80px;
}
.cta-section h1 {
	font-size: 45px;
	margin-bottom: 20px;
}
.cta-section p {
	font-size: 20px;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: #555;
}
.cta-button {
	display: inline-block;
	padding: 18px 45px;
	background-color: #a72222;
	color: white;
	text-decoration: none;
	border-radius: 40px;
	font-weight: bold;
	font-size: 20px;
	transition: background 0.3s, transform 0.2s;
}
.cta-button:hover {
	background-color: #8a1b1b;
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	header, section#approach-details, .why-us {
		width: 90%;
	}
}

@media (max-width: 800px) {
	.approach-grid, .why-us {
		grid-template-columns: repeat(1, 1fr);
	}
	header h1 {
		font-size: 40px;
	}
}
