:root {
  --color-primary: #d4a574;
  --color-secondary: #8b6f47;
  --color-light: #f8f5f1;
  --color-dark: #2c2416;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e4df;
  --color-white: #ffffff;
  --color-text: #3a3a3a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 8px;
}

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

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

html {
  scroll-behavior: smooth;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

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

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

main {
  padding-top: 80px;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-light), var(--color-white));
}

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

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

.hero-section img {
  box-shadow: var(--shadow-md);
}

.content-section {
  padding: 5rem 0;
}

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

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

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

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

.content-section img {
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.content-section img:hover {
  transform: scale(1.02);
}

.context-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.context-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.context-card img {
  margin-bottom: 1.5rem;
}

.context-card h3 {
  margin-top: 1rem;
}

.limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.limit-item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.limit-item h3 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.faq-item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

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

.contact-info {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-secondary);
}

.closing-note {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
}

.closing-note h4 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

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

.btn-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

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

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

.footer p {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
  margin-bottom: 0.5rem;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-option input {
  margin-right: 0.5rem;
}

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

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

.policy-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

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

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

.thankyou-page {
  padding: 5rem 0;
  min-height: calc(100vh - 80px);
}

.thankyou-content {
  background: var(--color-light);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.additional-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: left;
}

.additional-info h3 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

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

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

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

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

  .cookie-buttons .btn {
    width: 100%;
  }
}
