:root {
  --primary: #C4826A;
  --secondary: #F2E8E4;
  --accent: #7C5C52;
  --bg: #FBF8F6;
  --text-dark: #2C1F1B;
  --text-medium: #6B4C41;
  --white: #ffffff;
  --font-heading: Georgia, serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(251, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--secondary);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--accent);
  font-style: italic;
  font-weight: bold;
}

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

.nav-links a {
  color: var(--text-dark);
  font-size: 15px;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 34px;
  height: 34px;
}

.nav-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  margin: 0 auto;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--text-dark);
  left: 0;
  transition: var(--transition);
}

.nav-toggle-icon::before { top: -8px; }
.nav-toggle-icon::after { top: 8px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary);
  color: var(--white) !important;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--accent);
  color: var(--white) !important;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark) !important;
}

.btn-secondary:hover {
  background-color: #E6D8D2;
}

.hero {
  padding: 160px 0 100px;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 120px 120px 0 0;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  width: 100%;
  aspect-ratio: 4/5;
}

section {
  padding: 100px 0;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.feature-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(107, 76, 65, 0.05);
  border-top: 4px solid var(--secondary);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--primary);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--accent);
}

.module {
  border-bottom: 1px solid var(--secondary);
  padding: 24px 0;
}

.module:first-child { border-top: 1px solid var(--secondary); }

.module h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.testimonial {
  background-color: var(--secondary);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 60px;
  color: rgba(196, 130, 106, 0.2);
  line-height: 1;
}

.testimonial-author {
  font-weight: bold;
  margin-top: 20px;
  color: var(--text-dark);
}

.form-section {
  background-color: var(--accent);
  color: var(--white);
  padding: 80px 0;
}

.form-section .section-title,
.form-section .section-subtitle,
.form-section p {
  color: var(--white);
}

.lead-form {
  background-color: var(--white);
  padding: 50px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E6D8D2;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--bg);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 12px;
  color: var(--text-medium);
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
}

.footer {
  background-color: #241A17;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

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

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

@media (max-width: 992px) {
  .hero h1 { font-size: 38px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-image img { border-radius: 80px 80px 0 0; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
  }
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .section-title { font-size: 28px; }
  .form-section { padding: 60px 0; }
  .lead-form { padding: 30px 20px; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; }
}

.legal-content {
  padding: 140px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 30px;
  font-size: 32px;
  color: var(--accent);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p, .legal-content li {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.rounded-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(107, 76, 65, 0.1);
  width: 100%;
}
