:root {
  --color-sand: #d4a574;
  --color-sand-light: #e8c9a6;
  --color-sand-dark: #b88a5f;
  --color-cream: #faf7f2;
  --color-beige: #ede7dd;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #e0e0e0;
  --color-gray-dark: #4a4a4a;
  --color-text: #2c2c2c;
  --color-white: #ffffff;
}

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

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

html {
  scroll-behavior: smooth;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sand-dark);
}

.navbar-brand:hover {
  color: var(--color-sand);
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-dark) 100%);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
}

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

.btn-primary {
  background: var(--color-sand);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-sand-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.content-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-sand-dark);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--color-gray-dark);
  margin-bottom: 3rem;
}

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

.img-fluid {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item {
  margin-bottom: 2.5rem;
}

.faq-item h4 {
  font-size: 1.3rem;
  color: var(--color-sand-dark);
  margin-bottom: 0.75rem;
}

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

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

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

.form-control {
  border: 2px solid var(--color-gray-medium);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-sand);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-sand-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: var(--color-beige);
  line-height: 1.8;
}

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

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

.footer-links a {
  color: var(--color-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-sand-light);
}

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

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.btn-secondary {
  background: var(--color-gray-medium);
  color: var(--color-text);
  border: none;
}

.btn-secondary:hover {
  background: var(--color-gray-dark);
  color: var(--color-white);
}

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

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

.policy-section {
  padding: 120px 0 60px;
}

.policy-section h1 {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  color: var(--color-sand-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.thank-you-section {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thank-you-section h1 {
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-box {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

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

  .content-section h2 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }

  .btn-cta {
    margin-top: 1rem;
  }
}
