.wrap {
	max-width: 900px;
	margin: 36px auto;
	padding: 28px 22px
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-40px) scale(1.05);
	}
}

/* Enhanced Header */
header {
	text-align: center;
	padding: 130px 20px 90px;
	/* border-bottom-left-radius: 60px; */
	/* border-bottom-right-radius: 60px; */
	position: relative;
	overflow: hidden;
}

header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
	background-size: cover;
	opacity: 0.9;
}

header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

header p {
	font-size: 1.3rem;
	opacity: 0.95;
	max-width: 600px;
	margin: 0 auto;
}

section {
	padding: 20px 0;
	position: relative;
}

section:nth-child(even) {
	background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

section h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #03346c;
}

section p,
section li {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #555;
}

ul {
	margin: 6px 0 12px 20px;
}

/* Contact Section */
.contact-section {
	background: linear-gradient(135deg, #03346c, #03346c);
	color: white;
	padding: 50px 30px;
	border-radius: 20px;
	text-align: center;
	margin-top: 40px;
}

.contact-section h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: white;
}

.contact-section p {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: white;
}

.contact-section a {
	color: white;
	text-decoration: none;
	font-size: 1.3rem;
	font-weight: 600;
	border: 2px solid white;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.contact-section a:hover {
	background: white;
	color: #6a82a7;
}

footer {
	margin-top: 26px;
	color: var(--muted);
	font-size: 13px
}

a {
	color: var(--accent);
	text-decoration: none
}

@media (max-width:768px) {
	header h1 {
		font-size: 2.5rem;
	}

	section h2 {
		font-size: 1.6rem;
	}
}