* {
  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: #2c2c2c;
  background-color: #fafaf8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

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

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97748;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #c56538;
}

.nav-link {
  color: #4a4a4a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d97748;
}

.btn-cta {
  background: linear-gradient(135deg, #d97748 0%, #c56538 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 119, 72, 0.3);
  color: white;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d97748 0%, #c56538 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 72, 0.4);
  color: white;
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23d97748' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
  margin-top: 80px;
}

.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #fff8f3 0%, #fafaf8 100%);
}

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

.bg-light {
  background-color: #f5f4f2;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.rounded {
  border-radius: 12px;
}

.intro-text {
  font-size: 1.15rem;
  color: #5a5a5a;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: #d97748;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
  color: #5a5a5a;
}

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

.contact-info h3 {
  color: #d97748;
  margin-bottom: 1rem;
}

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

.contact-form h3 {
  color: #d97748;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 0.5rem;
  display: block;
}

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

.form-control:focus {
  border-color: #d97748;
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 72, 0.1);
  outline: none;
}

.footer {
  background: #2c2c2c;
  color: #d0d0d0;
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.25rem;
  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: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d97748;
}

.footer .text-center {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
}

.footer a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #d97748;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 20px;
  z-index: 2000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: #d97748;
  color: white;
}

.btn-accept:hover {
  background: #c56538;
  transform: translateY(-2px);
}

.btn-reject {
  background: #6c6c6c;
  color: white;
}

.btn-reject:hover {
  background: #5a5a5a;
}

.btn-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-settings:hover {
  background: white;
  color: #2c2c2c;
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  max-width: 500px;
  width: 90%;
  display: none;
}

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

.cookie-settings h3 {
  color: #d97748;
  margin-bottom: 20px;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e6e3;
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option label {
  display: block;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 5px;
  cursor: pointer;
}

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

.cookie-option p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c6c6c;
  margin-left: 25px;
}

.legal-page {
  padding: 40px 0 60px;
  min-height: calc(100vh - 250px);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: #d97748;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: #4a4a4a;
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: #5a5a5a;
  line-height: 1.7;
}

.thank-you-page {
  padding: 80px 0;
  min-height: calc(100vh - 250px);
}

.thank-you-content {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thank-you-content h1 {
  color: #d97748;
  margin-bottom: 1.5rem;
}

.contact-reminder {
  background: #f5f4f2;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.contact-reminder h3 {
  color: #d97748;
  font-size: 1.25rem;
}

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

  h2 {
    font-size: 1.75rem;
  }

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

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

  .navbar-nav {
    padding: 20px 0;
  }

  .nav-item {
    margin-bottom: 10px;
  }

  .btn-cta {
    margin-top: 10px;
  }

  .thank-you-content {
    padding: 30px 20px;
  }

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

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

@media (max-width: 576px) {
  .footer .col-md-4 {
    margin-bottom: 30px;
  }

  .footer .text-right {
    text-align: left !important;
  }
}
