* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0c2653;
  padding: 1rem 2rem;
}

.logo {
  font-size: 2rem;
  color: #41ca7c;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover {
  color: #41ca7c;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5% 20px 5%;
  background: #eaf6fe;
}
.hero-img {
  max-width: 400px; width: 100%; margin-left: 2rem;
}
.hero h1 { font-size: 2.5rem; color: #0c2653; }

.btn {
  display: inline-block;
  background: #41ca7c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 5px;
  margin-top: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.btn:hover { background: #2f9e5c; }

.services {
  padding: 60px 5%;
  background: #fff;
  text-align: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.card {
  background: #eaf6fe;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card img {
  width: 64px; margin-bottom: 18px;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  background: #fff;
}
.about-img {
  width: 340px; border-radius: 20px;
}

.contact {
  padding: 60px 5%;
  background: #eaf6fe;
}
form {
  max-width: 440px;
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 30px;
}
label, input, textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}
input, textarea {
  border: 1px solid #b5c4d3;
  border-radius: 4px;
  padding: 10px;
  font-size: 1rem;
}
.contact-options {
  margin-top: 26px;
}
.contact-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.contact-icons img {
  width: 48px; height: 48px;
}

footer {
  background: #0c2653;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 48px;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .about { flex-direction: column; }
}
@media (max-width: 600px) {
  .navbar { flex-direction: column; }
  .nav-links { flex-direction: column; gap: 1rem; }
  .hero h1 { font-size: 1.8rem; }
}
