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

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

html {
  scroll-behavior: smooth;
}

.main-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a66b !important;
}

.nav-link {
  color: #555 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c9a66b !important;
}

.btn-cta {
  background: linear-gradient(135deg, #c9a66b 0%, #b89557 100%);
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-left: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 166, 107, 0.3);
}

.hero-section {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1e8 100%);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 1rem;
}

.hero-section p {
  color: #666;
  margin-bottom: 2rem;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #c9a66b 0%, #b89557 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 166, 107, 0.4);
}

.hero-section img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.bg-light {
  background: #fafafa !important;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 2rem;
  text-align: center;
}

.content-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c9a66b;
  margin-bottom: 1rem;
}

.content-section p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.content-section img {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px 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 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h5 {
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

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

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.contact-form .form-control:focus {
  border-color: #c9a66b;
  box-shadow: 0 0 0 0.2rem rgba(201, 166, 107, 0.15);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #c9a66b 0%, #b89557 100%);
  border: none;
  padding: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
}

.main-footer {
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.main-footer h5 {
  color: #c9a66b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.main-footer p {
  color: #bbb;
  margin-bottom: 0.5rem;
}

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

.main-footer a:hover {
  color: #c9a66b;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid #c9a66b;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  color: #555;
  flex: 1;
  min-width: 300px;
  margin-bottom: 1rem;
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  border: none;
}

.cookie-buttons .btn-primary {
  background: linear-gradient(135deg, #c9a66b 0%, #b89557 100%);
}

.cookie-buttons .btn-secondary {
  background: #6c757d;
  color: #fff;
}

.cookie-buttons .btn-outline {
  background: transparent;
  border: 2px solid #c9a66b;
  color: #c9a66b;
}

.policy-section {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.policy-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #c9a66b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #555;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-section p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section a {
  color: #c9a66b;
  text-decoration: underline;
}

.policy-section a:hover {
  color: #b89557;
}

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

.thank-you-section h1 {
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.thank-you-section .lead {
  font-size: 1.3rem;
  color: #555;
}

.thank-you-section p {
  color: #666;
  font-size: 1.1rem;
}

.contact-info {
  background: #faf8f5;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #c9a66b;
}

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

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

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

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

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