:root {
  --primary-bg: #FCFBF7;
  --secondary-bg: #F3EFE6;
  --text-color: #2C3539;
  --text-light: #5A6368;
  --accent-color: #1B4D3E;
  --accent-hover: #13382D;
  --gold-color: #C5A059;
  --error-color: #A94442;
  --success-color: #3C763D;
  --font-family-sans: 'Montserrat', sans-serif;
  --font-family-serif: 'Lora', serif;
}

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

body {
  font-family: var(--font-family-sans);
  background-color: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-family-serif);
  color: var(--accent-color);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold-color);
  color: var(--primary-bg);
  padding: 10px 20px;
  z-index: 1000;
  transition: top 0.3s;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 3px solid var(--gold-color);
  outline-offset: 2px;
}

/* Header & Nav */
header {
  background-color: var(--primary-bg);
  border-bottom: 1px solid var(--secondary-bg);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  font-weight: 500;
  font-size: 1rem;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--accent-color);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background-color: var(--secondary-bg);
  padding: 1rem;
  border-bottom: 1px solid var(--gold-color);
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav.active {
  display: block;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.hero-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Statistics */
.stats {
  background-color: var(--accent-color);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold-color);
}

/* How It Works */
.steps {
  padding: 5rem 0;
  text-align: center;
}

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

.step-card {
  background: var(--secondary-bg);
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--gold-color);
  margin-bottom: 1.5rem;
}

/* Services */
.services-section {
  padding: 5rem 0;
  background-color: var(--secondary-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--primary-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 1.5rem;
}

/* Features */
.features {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features-grid img {
  width: 100%;
  border-radius: 8px;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
}

.features-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: "✔";
  color: var(--gold-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  background-color: var(--secondary-bg);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.price-card {
  background: var(--primary-bg);
  padding: 3rem 2rem;
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.price-card.popular {
  border: 2px solid var(--gold-color);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-color);
  color: #fff;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 20px;
}

.price-amount {
  font-size: 2.2rem;
  font-family: var(--font-family-serif);
  color: var(--accent-color);
  margin: 1.5rem 0;
}

/* Form Section */
.form-section {
  padding: 5rem 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--secondary-bg);
  padding: 3rem;
  border-radius: 8px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  font-family: var(--font-family-sans);
  font-size: 1rem;
}

.form-control:focus {
  outline: 2px solid var(--accent-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 5px;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  border-bottom: 1px solid var(--secondary-bg);
  padding: 1rem 0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-family-serif);
  font-size: 1.3rem;
  color: var(--accent-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  display: none;
  padding: 1rem 0;
  color: var(--text-light);
}

.accordion-content.active {
  display: block;
}

/* Trust Layer & Footer */
.trust-layer {
  background-color: var(--secondary-bg);
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--text-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer {
  background-color: var(--accent-color);
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--gold-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
}

.footer-col a:hover {
  color: var(--gold-color);
}

/* Cookie Banner */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1.5rem;
}

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

@media (max-width: 768px) {
  .hero-content, .features-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}