:root {
  --color-brand: #C17B5C;
  --color-brand-hover: #A66548;
  --color-bg: #FBF6F0;
  --color-text: #3D2B1F;
  --color-muted: #8A7B72;
  --color-card: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; text-align: center; }
.h3 { font-size: 1.5rem; margin-bottom: 1rem; }

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

section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  background-color: var(--color-brand);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

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

.btn-large {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

.header {
  position: sticky;
  top: 0;
  background-color: rgba(251, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 43, 31, 0.1);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-brand);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.hero-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-2-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.card {
  background-color: var(--color-card);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

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

.module-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-brand);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid rgba(61, 43, 31, 0.1);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.form-section {
  background-color: #EFE8E0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-card);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

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

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(61, 43, 31, 0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #FAFAFA;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.form-policy {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 1rem;
  text-align: center;
}

.form-policy a {
  text-decoration: underline;
  color: var(--color-text);
}

.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  color: var(--color-brand);
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text);
  color: #fff;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-text a {
  text-decoration: underline;
  color: var(--color-brand);
}

.simple-page {
  padding: 6rem 0;
}

.simple-page-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-card);
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.simple-page-content h1 { margin-bottom: 2rem; }
.simple-page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.simple-page-content p { margin-bottom: 1rem; color: var(--color-muted); }
.simple-page-content ul { margin-bottom: 1rem; padding-left: 2rem; color: var(--color-muted); }
.simple-page-content li { margin-bottom: 0.5rem; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .grid-2, .grid-2-clean {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(251, 246, 240, 0.98);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .simple-page-content {
    padding: 2rem;
  }
}
