@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&family=Nunito:wght@400;600;700&display=swap');

:root {
  --color-primary: #F4846F;
  --color-primary-hover: #E0715D;
  --color-secondary: #A3B899;
  --color-bg-cream: #FDFBF7;
  --color-bg-white: #FFFFFF;
  --color-text-dark: #3A3534;
  --color-text-light: #7A7473;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
  margin-bottom: 1rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

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

header {
  padding: 24px 0;
  background-color: var(--color-bg-cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px dashed rgba(163, 184, 153, 0.3);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
}

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

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--color-primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(244, 132, 111, 0.2);
}

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

.btn-secondary:hover {
  background-color: #8CA382;
  box-shadow: 0 8px 16px rgba(163, 184, 153, 0.2);
}

section {
  padding: 80px 0;
}

.bg-white {
  background-color: var(--color-bg-white);
}

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

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

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

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

.card {
  background: var(--color-bg-cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(163, 184, 153, 0.3);
}

.bg-white .card {
  background: var(--color-bg-white);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 2px solid rgba(163, 184, 153, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  background: white;
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

.lead-form-wrapper {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.lead-form-wrapper h2 {
  color: white;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 32px auto 0 auto;
}

input {
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  outline: none;
}

input:focus {
  box-shadow: 0 0 0 4px rgba(244, 132, 111, 0.3);
}

.note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 16px;
}

footer {
  padding: 48px 0;
  background-color: var(--color-text-dark);
  color: white;
  text-align: center;
}

footer a {
  color: #DDD;
}

footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.company-details {
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-dark);
  color: white;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner p { margin: 0; }

.cookie-banner button {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-display);
}

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

.legal-content h1 { margin-bottom: 40px; }
.legal-content h2 { margin-top: 40px; font-size: 1.5rem; }

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

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .lead-form-wrapper {
    padding: 32px 16px;
  }
}
