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

:root {
  --primary-color: #d4a574;
  --primary-dark: #b8874f;
  --accent-color: #e8b85e;
  --text-dark: #2c2417;
  --text-light: #5a4a3a;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --shadow: rgba(44, 36, 23, 0.08);
}

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

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

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

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

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

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

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
  color: var(--bg-white);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.content-section.bg-light {
  background: var(--bg-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

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

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.img-fluid {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: 0 4px 15px var(--shadow);
}

.faq-item {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

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

.form-control {
  border: 2px solid #e5e0da;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
}

.btn-block {
  display: block;
  width: 100%;
}

.contact-info {
  color: var(--text-light);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.btn-secondary {
  background: #6c5a47;
  border: none;
}

.btn-secondary:hover {
  background: #5a4a3a;
}

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

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

.policy-section {
  padding: 140px 0 80px;
}

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

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.text-muted {
  color: #8a7a68;
}

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

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

.thank-you-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

html {
  scroll-behavior: smooth;
}
