:root {
  --color-primary: #f4d03f;
  --color-primary-dark: #e0bd2f;
  --color-text: #2c2c2c;
  --color-text-light: #5a5a5a;
  --color-background: #fdfcf8;
  --color-white: #ffffff;
  --color-light: #f9f7f2;
  --color-border: #e8e5dc;
  --header-height: 70px;
}

* {
  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);
  background-color: var(--color-background);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: var(--header-height);
}

#main-header .navbar {
  padding: 0.75rem 0;
}

#main-header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

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

#main-header .nav-link:hover {
  color: var(--color-primary-dark);
}

#main-header .btn-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-text);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}

.hero-section {
  padding: calc(var(--header-height) + 80px) 0 80px 0;
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f7f2 100%);
}

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

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

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

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

.content-section p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-text);
}

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

.rounded {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(244, 208, 63, 0.25);
}

.contact-info {
  background-color: var(--color-light);
  padding: 1.5rem;
  border-radius: 12px;
}

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

.site-footer {
  background-color: var(--color-text);
  color: var(--color-white);
  padding: 60px 0 30px 0;
}

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

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

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

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

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

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

.cookie-option label {
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-option p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-section {
  padding: calc(var(--header-height) + 60px) 0 60px 0;
  min-height: 100vh;
}

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

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

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

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

.policy-section ul {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.policy-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.update-date {
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

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

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

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

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

.contact-details {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.contact-details p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

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

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

  #main-header .btn-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: calc(var(--header-height) + 50px) 0 50px 0;
  }

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

  .hero-section h1 {
    font-size: 1.85rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }
}
