:root {
  --cream: #faf7f2;
  --sand: #e8e3d8;
  --stone: #c4bdb0;
  --navy: #1a2840;
  --burgundy: #8b4049;
  --copper: #b87a5c;
  --white: #ffffff;
  --text-dark: #1a2840;
  --text-muted: #6b6b6b;
}

* {
  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: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}

.hero {
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--sand);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--burgundy);
}

.quick-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.path-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(139, 64, 73, 0.15);
}

.path-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 15px;
}

.path-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(139, 64, 73, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--sand);
}

.product-info {
  padding: 25px;
}

.product-badge {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-notes {
  list-style: none;
  margin-bottom: 20px;
}

.product-notes li {
  color: var(--text-muted);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.product-notes li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--burgundy);
  font-weight: bold;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  background: var(--burgundy);
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(139, 64, 73, 0.3);
}

.btn-secondary {
  background: var(--copper);
}

.btn-secondary:hover {
  background: var(--burgundy);
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--sand);
  position: absolute;
  top: 20px;
  right: 20px;
}

.step-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  margin-top: 50px;
}

.testimonial-card {
  min-width: 350px;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 13px;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.accordion .card {
  background: var(--white);
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion .card-header {
  background: var(--white);
  border: none;
  padding: 0;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.accordion .btn-link:hover {
  color: var(--burgundy);
  text-decoration: none;
}

.accordion .card-body {
  padding: 20px 25px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--sand);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section p,
.footer-section a {
  color: var(--sand);
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sand);
  font-size: 14px;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--sand);
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--burgundy);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
}

.form-check label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.thank-you-box {
  text-align: center;
  max-width: 600px;
  margin: 100px auto;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thank-you-box h1 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 20px;
}

.thank-you-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 18px;
  color: var(--navy);
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: var(--sand);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: var(--burgundy);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--copper);
}

.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-decline:hover {
  background: var(--white);
  color: var(--navy);
}

.filter-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--white);
}

.about-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  color: var(--sand);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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