@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Top bar */
.top-bar {
  background-color: #002B5B;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.top-bar a {
  color: #E94560;
  margin-left: 0.5rem;
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* Navbar */
.navbar {
  background-color: #234E70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.navbar ul {
  list-style: none;
  display: flex;
}
.navbar ul li {
  margin-left: 1rem;
}
.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar ul li a:hover {
  color: #E94560;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #002B5B 0%, #234E70 100%);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #E94560;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.btn-primary:hover {
  background-color: #D8344E;
}

/* Section */
.section {
  padding: 3rem 1rem;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #002B5B;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card i {
  font-size: 2.5rem;
  color: #E94560;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #234E70;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}
.pricing-table th {
  background-color: #234E70;
  color: #fff;
}
.pricing-table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.pricing-table tr:hover {
  background-color: #f5f5f5;
}
.pricing-note {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 0.9rem;
  color: #555;
}

/* About */
.about-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.about-section p {
  margin-bottom: 1rem;
}

/* Contact */
.contact-section {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}
.contact-form button {
  align-self: center;
}

/* Footer */
.footer {
  background-color: #234E70;
  color: #fff;
  padding: 2rem 1rem;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer h4 {
  margin-bottom: 0.5rem;
  color: #fff;
}
.footer a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer a:hover {
  color: #E94560;
}
.footer p {
  font-size: 0.9rem;
  color: #d1d1d1;
}
.footer .social-icons a {
  margin-right: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #E94560;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}