:root {
  --primary-color: #2d6a4f;
  --accent-gold: #d4af85;
  --accent-terracotta: #c17565;
  --accent-lavender: #b8a5c8;
  --neutral-dark: #1a1a1a;
  --neutral-light: #f5f5f5;
  --neutral-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-dark);
}

h1 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--accent-terracotta);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-lavender);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

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

.section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section:last-child {
  border-bottom: none;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(45, 106, 79, 0.8) 100%);
  color: var(--neutral-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('images/hero-meditation.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--neutral-white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--neutral-white);
  font-size: 1.2rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary-color);
  color: var(--neutral-white);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.btn-secondary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--neutral-dark);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.features-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.features-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

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

.card {
  background-color: var(--neutral-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--accent-terracotta);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--accent-gold);
}

.timeline-item {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: var(--neutral-light);
  border-radius: 8px;
  margin-left: 0;
  margin-right: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(50% - 8px);
  top: 2rem;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--neutral-white);
}

.faq {
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-light);
  padding-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--neutral-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(212, 175, 133, 0.1);
}

.faq-question.active {
  background-color: rgba(45, 106, 79, 0.1);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1rem 1rem 1rem;
  background-color: rgba(245, 245, 245, 0.5);
}

.faq-answer.active {
  display: block;
}

footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

footer h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

footer a {
  color: var(--neutral-light);
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--neutral-light);
}

.disclaimer {
  background-color: rgba(212, 175, 133, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-style: italic;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-light);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--accent-gold);
  color: var(--neutral-dark);
}

.cookie-refuse {
  background-color: transparent;
  color: var(--neutral-white);
  border: 1px solid var(--neutral-white);
}

.cookie-refuse:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more {
  color: var(--accent-gold);
  cursor: pointer;
  text-decoration: underline;
}

.success-message {
  background-color: rgba(45, 106, 79, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  color: var(--primary-color);
}

.soft-cta {
  background-color: var(--neutral-light);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.soft-cta h2 {
  color: var(--primary-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.blog-card-content {
  padding: 2rem;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.blog-card p {
  margin-bottom: 1rem;
}

.blog-card .btn {
  display: inline-block;
  margin-top: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table th,
table td {
  border: 1px solid var(--neutral-light);
  padding: 1rem;
  text-align: left;
}

table th {
  background-color: var(--neutral-light);
  font-weight: 600;
  color: var(--neutral-dark);
}

table tr:hover {
  background-color: rgba(45, 106, 79, 0.05);
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item::before {
    left: 12px;
  }
}
