:root {
  --primary-light: #E0E7FF;
  --primary-dark: #4A6C6F;
  --accent-gold: #FFD700;
  --accent-gray: #A6A9B6;
  --white: #FFFFFF;
  --black: #000000;
  --gray-light: #F5F5F5;
  --gray-medium: #E8E8E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Playfair Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--primary-dark);
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--black);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
}

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

header .navbar {
  padding: 1rem 0;
}

header .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

header .navbar-brand:hover {
  color: var(--accent-gold);
}

header .nav-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-right: 2rem;
}

header .nav-link:hover {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

main {
  margin-top: 80px;
  padding-bottom: 3rem;
}

footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

footer h3 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

footer p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

footer a {
  color: var(--accent-gold);
}

footer a:hover {
  color: var(--white);
  border-bottom: 1px solid var(--accent-gold);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin-top: 2rem;
  border-left: 4px solid var(--accent-gold);
  font-size: 0.95rem;
  text-align: center;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(224, 231, 255, 0.5) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(74, 108, 111, 0.15);
}

.section {
  padding: 5rem 0;
  overflow: hidden;
}

.section:nth-child(odd) {
  background-color: var(--white);
}

.section:nth-child(even) {
  background-color: var(--gray-light);
}

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

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

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

.two-column-text-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  direction: rtl;
}

.two-column-text-right > * {
  direction: ltr;
}

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

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--gray-medium);
}

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

.card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.8;
}

.bullet-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(74, 108, 111, 0.12);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(224, 231, 255, 0.4) 100%);
  border-radius: 8px;
  margin-top: 3rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.disclaimer-section {
  background-color: var(--primary-light);
  padding: 2.5rem;
  border-left: 4px solid var(--accent-gold);
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-section h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.disclaimer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--accent-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(74, 108, 111, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: var(--gray-light);
  padding: 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent-gold);
}

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookies-banner.show {
  display: block;
}

.cookies-banner p {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.95rem;
}

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

.cookies-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-accept:hover {
  background-color: var(--white);
}

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

.btn-decline:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

.btn-learn {
  background-color: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  text-decoration: none;
}

.btn-learn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.faq-accordion {
  margin: 2rem 0;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--gray-medium);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--primary-light);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(224, 231, 255, 0.8);
}

.faq-toggle {
  color: var(--primary-dark);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  display: none;
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.back-to-home {
  text-align: center;
  margin-top: 2rem;
}

.back-to-home a {
  display: inline-block;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.back-to-home a:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  .two-column-layout,
  .two-column-text-left,
  .two-column-text-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-text-right {
    direction: ltr;
  }

  .two-column-text-right > * {
    direction: ltr;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  header .nav-link {
    margin-right: 1rem;
    font-size: 0.9rem;
  }

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

  .section {
    padding: 3rem 0;
  }

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

  .cookies-buttons button {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  main {
    margin-top: 70px;
  }

  header .navbar {
    padding: 0.75rem 0;
  }

  header .navbar-brand {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .card {
    padding: 1.5rem;
  }

  .thank-you-container {
    padding: 2rem 1rem;
    min-height: auto;
  }
}
