/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

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

.cookie-content a {
  color: #8b5cf6;
  text-decoration: underline;
}

.btn-accept {
  background: #8b5cf6;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}

.btn-accept:hover {
  background: #7c3aed;
}

/* Header and Navigation */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  padding: 1rem 0;
}

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

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #8b5cf6;
  text-decoration: none;
}

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

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #8b5cf6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 60px 0;
}

.bg-light {
  background: #f9fafb;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1f2937;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #374151;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-text p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.7;
}

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

/* Product Card */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.product-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ingredients {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.ingredients h4 {
  color: #8b5cf6;
  margin-bottom: 10px;
}

.ingredients ul {
  list-style: none;
  padding-left: 0;
}

.ingredients li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.ingredients li:last-child {
  border-bottom: none;
}

.recommendation {
  background: #ede9fe;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #8b5cf6;
}

.recommendation h4 {
  color: #6d28d9;
}

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

.care-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

.care-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

/* Benefits List */
.benefits-list {
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.benefit-number {
  background: #8b5cf6;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-content h3 {
  margin-bottom: 10px;
  color: #8b5cf6;
}

/* Newsletter Section */
.newsletter-box {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-box h2 {
  color: #fff;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.btn-primary {
  background: #fff;
  color: #8b5cf6;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #f3f4f6;
}

/* Warning Section */
.warning-section {
  background: #fef3c7;
  padding: 40px 0;
}

.warning-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border: 3px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

.warning-box h2 {
  color: #f59e0b;
  margin-bottom: 20px;
}

.warning-text {
  font-size: 20px;
  line-height: 1.7;
  color: #1f2937;
}

.warning-text.large-text {
  font-size: 22px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #1f2937;
  color: #fff;
  padding: 50px 0 20px;
}

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

.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #8b5cf6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.last-updated {
  font-size: 16px;
  opacity: 0.9;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background: #f9fafb;
  padding: 30px;
  border-radius: 10px;
}

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

.contact-item h3 {
  color: #8b5cf6;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

.contact-form .btn-primary {
  background: #8b5cf6;
  color: #fff;
  width: 100%;
  padding: 15px;
  font-size: 18px;
}

.contact-form .btn-primary:hover {
  background: #7c3aed;
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
}

.thank-you-message {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 20px;
}

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

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

.thank-you-actions .btn-primary {
  width: auto;
  padding: 15px 40px;
  display: inline-block;
  text-decoration: none;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  color: #8b5cf6;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-text h3 {
  color: #6d28d9;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
}

.legal-text p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
}

.legal-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-text li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-text a {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Experience and Approach */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.experience-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-card h3 {
  color: #8b5cf6;
  margin-bottom: 15px;
}

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

.approach-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #8b5cf6;
}

.approach-item h3 {
  color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

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

  h2 {
    font-size: 28px;
  }

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

  .nav-menu {
    gap: 1rem;
  }

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .nav .container {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }
}
