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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: #1a4d7a !important;
  font-weight: 700;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1a4d7a !important;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(26, 77, 122, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.content-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d7a;
  margin-bottom: 1.5rem;
}

.page-header {
  padding: 4rem 0 2rem;
  background-color: #f8f9fa;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a4d7a;
  margin-bottom: 1rem;
}

.info-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3,
.info-card h4 {
  color: #1a4d7a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.season-info {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.season-info:last-child {
  border-bottom: none;
}

.season-info h4 {
  color: #1a4d7a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: #1a4d7a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1a4d7a;
  margin-top: 1rem;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, #1a4d7a 0%, #2c6aa0 100%);
  color: #ffffff;
}

.cta-box {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #1a4d7a;
  border-color: #1a4d7a;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2c6aa0;
  border-color: #2c6aa0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
}

.btn-outline-primary {
  color: #1a4d7a;
  border-color: #1a4d7a;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1a4d7a;
  border-color: #1a4d7a;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-info {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.footer {
  background-color: #1a4d7a;
  color: #ffffff;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a4d7a;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #1a4d7a;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 3rem 0;
  }
}
