:root {
  --color-bg-primary: #fbfdff;
  --color-bg-secondary: #eef6ff;
  --color-text-primary: #0b1b2b;
  --color-accent-teal: #4dd6c1;
  --color-accent-purple: #a78bfa;
  --color-accent-gold: #f2d6a2;
  --color-border: #d4e6f1;
  --color-shadow: rgba(11, 27, 43, 0.08);
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

h5, h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

header {
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--color-shadow);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
}

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

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

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

nav a.active {
  color: var(--color-accent-teal);
  border-bottom: 2px solid var(--color-accent-teal);
  padding-bottom: 0.25rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--color-shadow);
  backdrop-filter: blur(10px);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero-content h1 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-accent-teal);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.hero-subtitle span {
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent-teal);
  color: white;
  box-shadow: 0 4px 12px rgba(77, 214, 193, 0.3);
}

.btn-primary:hover {
  background-color: #3bc4af;
  box-shadow: 0 6px 20px rgba(77, 214, 193, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-accent-teal);
  color: white;
  border-color: var(--color-accent-teal);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-accent-teal);
  font-size: 1.05rem;
  font-weight: 500;
}

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

.card {
  background: linear-gradient(135deg, rgba(251, 253, 255, 0.9), rgba(238, 246, 255, 0.9));
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--color-shadow);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(77, 214, 193, 0.15);
  border-color: var(--color-accent-teal);
}

.card h3 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.card-accent {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--color-accent-teal);
  margin-right: 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.card-accent.purple {
  background: var(--color-accent-purple);
}

.card-accent.gold {
  background: var(--color-accent-gold);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  box-shadow: 0 4px 12px var(--color-shadow);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: scale(1.02);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--color-accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.timeline-marker.alt {
  background: var(--color-accent-purple);
}

.timeline-content {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  border-left: 3px solid var(--color-accent-teal);
}

.timeline-content.alt {
  border-left-color: var(--color-accent-purple);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.faq-header {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background-color: var(--color-border);
}

.faq-toggle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content p {
  margin-bottom: 0.5rem;
}

footer {
  background-color: var(--color-text-primary);
  color: white;
  padding: 3rem 1rem 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--color-accent-teal);
}

.breadcrumb a {
  margin: 0 0.5rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-marker {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

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

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

  h2 {
    font-size: 1.25rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 2rem 0.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.consent-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-primary);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px var(--color-shadow);
}

.consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.consent-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-text a {
  color: var(--color-accent-teal);
}

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

.consent-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.consent-btn-accept:hover {
  background: #3bc4af;
}

.consent-btn-reject {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.consent-btn-reject:hover {
  border-color: white;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
