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

:root {
  --primary-color: #87CEEB;
  --accent-green: #3CB371;
  --accent-gold: #FFD700;
  --accent-dark: #36454F;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --border-radius: 8px;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark-gray);
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-dark);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  cursor: pointer;
}

.logo:hover {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

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

main {
  margin-top: 70px;
  padding-bottom: 100px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
}

.hero-content h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1rem;
}

.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--light-gray);
  padding: 5rem 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: #666;
}

.list-section {
  margin-top: 2rem;
}

.list-section ul {
  list-style-position: inside;
  padding-left: 1rem;
}

.list-section li {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.list-section li strong {
  color: var(--accent-green);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: var(--white);
}

table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: var(--light-gray);
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent-green);
  border-radius: 4px;
}

.faq-item h3 {
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #555;
  margin: 0;
}

footer {
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 5rem;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section p, .footer-section a {
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.button:hover {
  background-color: var(--accent-dark);
  transform: scale(1.05);
}

.button-secondary {
  background-color: var(--primary-color);
  color: var(--dark-gray);
}

.button-secondary:hover {
  background-color: var(--accent-green);
  color: var(--white);
}

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

  h2 {
    font-size: 1.5rem;
  }

  .navbar {
    padding: 0 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

.consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.consent-text {
  flex: 1;
  font-size: 0.9rem;
}

.consent-buttons {
  display: flex;
  gap: 1rem;
}

.consent-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.consent-accept {
  background-color: var(--accent-green);
  color: var(--white);
}

.consent-accept:hover {
  background-color: var(--accent-dark);
}

.consent-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.consent-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.consent-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.consent-learn:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
  .consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-buttons {
    flex-direction: column;
  }

  .consent-button {
    width: 100%;
    text-align: center;
  }
}
