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

:root {
  --primary-color: #6B8E23;
  --accent-light: #B0C4DE;
  --accent-warm: #D2B48C;
  --accent-sky: #F0F8FF;
  --white: #FFFFFF;
  --dark-gray: #2C3E50;
  --light-gray: #F5F5F5;
  --border-gray: #E0E0E0;
}

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

html, body {
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

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

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

a:hover {
  color: var(--accent-warm);
  text-decoration: underline;
}

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

header .navbar {
  padding: 0.8rem 0;
}

header .navbar-brand {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 2rem;
}

header .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.8rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

footer {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-gray);
  padding: 3rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

footer .footer-section {
  margin-bottom: 2rem;
}

footer .footer-section h5 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

footer .footer-links a {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

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

footer .contact-info {
  line-height: 1.8;
}

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

.section {
  padding: 4rem 0;
  position: relative;
}

.section-light {
  background-color: var(--accent-sky);
}

.section-warm {
  background-color: #FDF8F3;
}

.section-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7BA621 100%);
  color: var(--white);
}

.section-primary h2,
.section-primary h3,
.section-primary h4 {
  color: var(--white);
}

.hero-section {
  background: linear-gradient(rgba(107, 142, 35, 0.7), rgba(107, 142, 35, 0.7)), url('images/hero-wellness.jpg') center/cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--accent-sky);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--accent-warm);
  color: var(--dark-gray);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-warm);
  text-decoration: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.cta-button-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.8rem 2rem;
}

.cta-button-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

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

.two-column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

.card h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.card-list {
  list-style: none;
  margin: 1rem 0;
}

.card-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.card-list li:before {
  content: "●";
  color: var(--accent-warm);
  font-size: 0.8rem;
  position: absolute;
  left: 0;
}

.disclaimer-box {
  background-color: var(--accent-sky);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.catalog-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.catalog-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.catalog-item-content {
  padding: 2rem;
}

.catalog-item-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.catalog-benefits {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.catalog-benefits h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.4rem 0;
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.9rem;
}

.benefits-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: 700;
  position: absolute;
  left: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--dark-gray);
  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(107, 142, 35, 0.1);
}

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

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #5a7d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(107, 142, 35, 0.2);
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-message h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #5a7d1f;
}

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--accent-warm);
  border: 1px solid var(--accent-warm);
}

.cookie-learn:hover {
  background-color: var(--accent-warm);
  color: var(--dark-gray);
}

.message-container {
  background-color: var(--accent-sky);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.text-center {
  text-align: center;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

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

  .hero-section {
    min-height: 400px;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  header .navbar-brand {
    font-size: 1.4rem;
  }

  header .nav-link {
    margin: 0.4rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .container-wide {
    padding: 0 1rem;
  }
}
