/* Adding a background image for the hero section */
.hero {
  background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('images/tourism-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

/* Navigation styles */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Additional styles for benefits section */
.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.benefits-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.benefits-cta p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Form section improvements */
.form-description {
  text-align: center;
  margin-bottom: 30px;
}

form h3 {
  color: var(--navy-blue);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* Mobile menu for responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links li {
    margin: 10px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .benefits-cta {
    padding: 20px;
  }
}

/* Additional animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-button {
  animation: pulse 2s infinite;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-card {
    padding: 10px 5px;
}

.process-icon {
    color: #d1a823;
    font-size: 36px;
    margin-bottom: 10px;
}

.process-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-card p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Keep hero heading on one line on larger screens */
.hero h1 {
    white-space: nowrap;
}

/* On mobile, allow wrapping so it doesn't cut off */
@media (max-width: 768px) {
    .hero h1 {
        white-space: normal;
        font-size: 1.8rem;      /* optional: slightly smaller on mobile */
        line-height: 1.2;
    }
}
/* Lead Magnets Section Styling */
.lead-magnets {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.lead-magnets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.lead-magnet-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-magnet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lead-magnet-icon {
    font-size: 48px;
    color: #d4a574; /* Matches your existing gold/yellow color */
    margin-bottom: 20px;
}

.lead-magnet-card h3 {
    color: #0a2342; /* Matches your existing dark blue color */
    margin-bottom: 15px;
    font-size: 20px;
}

.lead-magnet-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form Section Styling */
.lead-magnet-form-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
}

.lead-magnet-form-section h2 {
    color: #0a2342;
    margin-bottom: 10px;
}

.lead-magnet-form-section p {
    color: #666;
    margin-bottom: 30px;
}

.form-embed-area {
    max-width: 600px;
    margin: 0 auto;
}