:root {
  --primary-color: #a89cad;
  --primary-dark: #8b7f93;
  --secondary-color: #f5f3f0;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --background-light: #fafaf9;
  --border-color: #e5e3df;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header-fixed .navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

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

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

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

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

.content-section p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.bg-light {
  background-color: var(--background-light) !important;
}

img.rounded {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: var(--shadow) !important;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.card-img-top {
  height: 240px;
  object-fit: cover;
}

.card-title {
  color: var(--text-dark);
  font-weight: 600;
}

.card-text {
  color: var(--text-light);
}

.limit-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.limit-card:hover {
  box-shadow: var(--shadow-hover);
}

.limit-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.faq-item {
  background: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.faq-item h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(168, 156, 173, 0.25);
}

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

.contact-info p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.footer {
  background: var(--secondary-color);
  padding: 2.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-link {
  color: var(--text-light);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-hover);
}

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

.cookie-settings-content .form-group {
  margin-bottom: 1rem;
}

.cookie-settings-content label {
  color: var(--text-dark);
  font-weight: 500;
}

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

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

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

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

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

.thank-you-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.thank-you-section p {
  color: var(--text-light);
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .btn-primary.ml-3 {
    margin-left: 0 !important;
    margin-top: 1rem;
    display: block;
    width: 100%;
  }

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

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

  .order-lg-1 {
    margin-bottom: 2rem;
  }
}

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

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

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

  .card-img-top {
    height: 200px;
  }

  .footer-link {
    margin-left: 0;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}
