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

:root {
  --primary-green: #2d7a4e;
  --light-green: #4a9d6f;
  --dark-green: #1e5438;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --text-light: #6b6b6b;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --warning-bg: #fff3cd;
  --warning-border: #ffc107;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

/* Header */
.header {
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Page Hero */
.page-hero {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid var(--primary-green);
}

.page-hero h1 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-gray);
}

/* Sections */
section {
  padding: 70px 0;
}

.section-title {
  font-size: 36px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Intro Section */
.intro-section {
  background-color: var(--bg-white);
}

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

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

.intro-text h2 {
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Product Section */
.product-section {
  background-color: var(--bg-light);
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.product-info h3 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.product-info p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  margin: 25px 0;
}

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-gray);
}

.benefits-list li strong {
  color: var(--primary-green);
  font-weight: 600;
}

.note {
  background-color: var(--bg-light);
  padding: 20px;
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-gray);
  margin-top: 25px;
}

/* Care Section */
.care-section {
  background-color: var(--bg-white);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.care-card {
  background-color: var(--bg-light);
  padding: 35px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: transform 0.3s, border-color 0.3s;
}

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

.care-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.care-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
  background-color: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

.advantage-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.advantage-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Warning Section */
.warning-section {
  background-color: var(--bg-white);
}

.warning-box {
  background-color: var(--warning-bg);
  border: 3px solid var(--warning-border);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
}

.warning-box h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.warning-text {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.warning-subtext {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--bg-light);
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.newsletter-box p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

/* Forms */
.form-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

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

.btn-primary {
  padding: 15px 35px;
  background-color: var(--primary-green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--dark-green);
}

.btn-secondary {
  padding: 15px 35px;
  background-color: var(--bg-light);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--light-green);
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--light-green);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 25px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-content p {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--light-green);
  text-decoration: underline;
}

.btn-cookie {
  padding: 12px 30px;
  background-color: var(--primary-green);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.btn-cookie:hover {
  background-color: var(--light-green);
}

/* About Page */
.about-content {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

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

.about-text h2 {
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  margin: 20px 0;
}

.about-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
  color: var(--text-gray);
}

.about-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 18px;
}

.info-box {
  background-color: var(--bg-light);
  padding: 25px;
  border-left: 4px solid var(--primary-green);
  border-radius: 4px;
  margin-top: 30px;
}

.info-box h4 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.info-box p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* Values Section */
.values-section {
  background-color: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Contact Page */
.contact-section {
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.contact-form-wrapper > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Thank You Page */
.thank-you-section {
  background-color: var(--bg-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
}

.thank-you-content h1 {
  font-size: 42px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 500;
}

.thank-you-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.thank-you-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Legal Pages */
.legal-page {
  background-color: var(--bg-white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.update-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 26px;
  color: var(--primary-green);
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.legal-content h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 15px 0 15px 30px;
}

.legal-content ul li {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

.disclaimer-warning {
  background-color: var(--warning-bg);
  border: 3px solid var(--warning-border);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
}

.disclaimer-warning h2 {
  margin-top: 0;
}

.large-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border-color);
  font-size: 15px;
}

.cookie-table th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 600;
}

.cookie-table td {
  color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .intro-grid,
  .product-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .care-grid,
  .advantages-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .warning-box {
    padding: 30px 20px;
  }

  .warning-text {
    font-size: 18px;
  }
}
