:root {
  --color-pearl-white: #fdfcfa;
  --color-warm-gray: #e8e6e3;
  --color-dark-gray: #4a4a4a;
  --color-aquamarine: #00d4aa;
  --color-aquamarine-dark: #00b894;
  --color-text-primary: #2c2c2c;
  --color-text-secondary: #666666;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

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

a:hover {
  color: var(--color-aquamarine-dark);
  text-decoration: none;
}

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

.navbar {
  padding: 1rem 0;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-aquamarine);
}

.nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-aquamarine);
}

.btn-cta {
  background: linear-gradient(135deg, var(--color-aquamarine), var(--color-aquamarine-dark));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-aquamarine), var(--color-aquamarine-dark));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-aquamarine-dark), var(--color-aquamarine));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

main {
  margin-top: 76px;
}

section {
  padding: 5rem 0;
}

.hero-section {
  background: linear-gradient(135deg, var(--color-pearl-white), var(--color-warm-gray));
  padding: 6rem 0;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-light {
  background-color: var(--color-warm-gray);
}

.section-white {
  background-color: white;
}

.section-info {
  background-color: var(--color-pearl-white);
}

.section-contact {
  background-color: var(--color-warm-gray);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}

.section-intro {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}

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

.rounded {
  border-radius: 10px;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-box {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
  color: var(--color-aquamarine);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-box ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-aquamarine);
  font-weight: bold;
}

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h5 {
  color: var(--color-aquamarine);
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.text-info-small {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-text-secondary);
}

.footer {
  background-color: var(--color-dark-gray);
  color: white;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--color-aquamarine);
}

.footer-note {
  font-size: 0.85rem;
  max-width: 800px;
  margin: 1rem auto 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark-gray);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner a {
  color: var(--color-aquamarine);
  text-decoration: underline;
}

.policy-page {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

.policy-page h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--color-aquamarine);
}

.policy-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-aquamarine);
}

.policy-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-page ul li {
  margin-bottom: 0.5rem;
}

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

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

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .btn-cta {
    margin-left: 0;
    margin-top: 1rem;
    display: inline-block;
  }

  section {
    padding: 3rem 0;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

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