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

:root {
  --primary-green: #2d5f3f;
  --light-green: #4a8f5e;
  --accent-green: #6fb883;
  --bg-light: #f8faf9;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --border-gray: #e0e0e0;
}

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

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

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

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

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-green);
}

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

/* Intro Section */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

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

.intro-text h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.intro-text p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

/* Product Card */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-info h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  margin: 1.5rem 0;
}

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

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

.note {
  background-color: var(--bg-light);
  padding: 1rem;
  border-left: 4px solid var(--accent-green);
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Care Grid */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.care-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.care-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.care-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #fff9e6;
}

.disclaimer-box {
  background-color: var(--white);
  border: 3px solid var(--accent-green);
  padding: 2rem;
  border-radius: 10px;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--primary-green);
  color: var(--white);
}

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

.newsletter-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-form {
  margin-top: 2rem;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-gray);
  border-radius: 5px;
  font-size: 1rem;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

.checkbox-group a {
  color: var(--white);
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
  width: 100%;
}

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

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-col h4 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px 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: 2rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

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

.btn-accept {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

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

/* Page Header */
.page-header {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2,
.about-text h3 {
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

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

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

.philosophy-list li:before {
  content: "→";
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.important-note {
  background-color: #fff9e6;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-green);
  margin-top: 2rem;
  border-radius: 5px;
}

.important-note h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Commitment Grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.commitment-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.commitment-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group label {
  color: var(--text-dark);
}

.contact-form .checkbox-group a {
  color: var(--primary-green);
}

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

/* Thank You Page */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  text-align: center;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-green);
  color: var(--white);
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.thank-you-details {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: left;
}

.thank-you-details h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.thank-you-details ul {
  list-style: none;
}

.thank-you-details li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.thank-you-details li:before {
  content: "✓";
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.thank-you-note {
  background-color: #fff9e6;
  padding: 1rem;
  border-radius: 5px;
  margin: 2rem 0;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

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

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

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

/* Policy Pages */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content h2 {
  color: var(--primary-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--light-green);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  margin: 1rem 0 1rem 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

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

.policy-content strong {
  color: var(--primary-green);
}

.warning-box {
  background-color: #fff3cd;
  border: 3px solid #ff9800;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.warning-box h2 {
  color: #d84315;
  margin-top: 0;
}

.large-text {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
}

.emergency-text {
  color: #d84315;
  font-size: 1.3rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--border-gray);
  padding: 0.8rem;
  text-align: left;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .intro-section,
  .product-card,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .care-grid,
  .benefits-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

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

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

  .thank-you-actions a {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }
}
