:root {
  --color-primary: #ff7f66;
  --color-primary-dark: #e56b53;
  --color-bg: #fefdfb;
  --color-bg-light: #faf8f5;
  --color-text: #2c2826;
  --color-text-muted: #6b6562;
  --color-border: #e8e3dd;
  --color-white: #ffffff;
  --spacing-unit: 1rem;
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(44, 40, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 40, 38, 0.08);
}

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

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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

#main-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.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) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

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

.rounded-img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

.faq-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

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

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

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 127, 102, 0.15);
}

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

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

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

footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: 2rem 0;
  margin-top: 80px;
}

footer a {
  color: var(--color-white);
  text-decoration: none;
  margin-left: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

.cookie-banner.active {
  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: 0.75rem;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 40, 38, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(44, 40, 38, 0.2);
}

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

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

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
}

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

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

.policy-section h2 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
}

.policy-section h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

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

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

  h2 {
    font-size: 1.75rem;
  }

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

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .btn-cta.ml-3 {
    margin-left: 0 !important;
    margin-top: 1rem;
  }

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

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
