* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif ;
  background:#0A4D9C;
  color: #333;
  line-height: 1.6;
}

/* Navigation */
.nav-container {
  background:#E6F5FF;
  padding: 2rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-image {
  width: 150px;
  height: auto;
}

.nav-logo-text {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: #0A4D9C;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: #0A4D9C;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link-ative {
  color: black;
}

/* Page Container */
.page-container {
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem;
  text-align: center;
  color: #FFFFFF ;
  }

.hero-content h1 {
  font-family: 'Righteous', cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #FFFFFF;
  color: #103FB2;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #FFFFFF;
  color: #103FB2;
  border: 2px solid white;
}


.btn-secondary:hover {
  background: #FFFFFF;
  color:#0A4D9C;
}

/* Sections */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-header {
  background: E6F5FF;
  text-align: center;
  padding:3rem 2rem;
}

.page-header h1 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.3rem;
  color: #FFFFFF;
}

/* Features Grid */
.features-section {
  background: #E6F5FF;
  padding: 4rem 2rem;
}

.features-section h2 {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  text-align: center;
  color: #0A4D9C;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: #0A4D9C;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #000000;
}

th {
  background: #0A4D9C;
  color: #FFFFFF;
  font-weight: 600;
}

tr:hover {
  background: #f8f9fa;
}

/* Contact Grid */
.contact-section {
  background: #E6F5FF;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-card,
.signup-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.contact-info-card h2,
.signup-card h2 {
  color: #0A4D9C
  margin-bottom: 1rem;
}

.contact-table {
  margin-top: 2rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.divider {
  text-align: center;
  position: relative;
  margin: 1rem 0;
}

.divider span {
  background: #f8f9fa;
  padding: 0 1rem;
  color: #666;
  position: relative;
  z-index: 1;
}

.divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ddd;
}

.map-placeholder {
  margin-top: 3rem;
}

.map-box {
  background: #f8f9fa;
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
}

/* Reviews */
.reviews-summary {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.reviews-summary h3 {
  color: #0A4D9C;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background: #0A4D9C;
  border-radius: 12px;
  color: #FFFFFF;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

