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

:root {
  --primary-blue: #2563eb;
  --dark-blue: #1e40af;
  --light-blue: #dbeafe;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-gray: #e5e7eb;
}

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

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

/* Header & Navigation */
.header {
  background: var(--white);
  box-shadow: 0 2px 4px 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 0;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

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

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

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

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

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

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Intro Section */
.intro {
  padding: 4rem 0;
  background: var(--white);
}

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

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.intro h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--primary-blue);
}

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

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

.experience-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

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

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

/* Product Section */
.product {
  padding: 4rem 0;
  background: var(--bg-light);
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.product-benefits li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-gray);
}

.product-benefits li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
  line-height: 1;
}

.product-note {
  background: var(--light-blue);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  color: var(--dark-blue);
}

/* Care Section */
.care {
  padding: 4rem 0;
  background: var(--white);
}

.care h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.care-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: transform 0.3s;
}

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

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

.care-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.care-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: var(--bg-light);
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

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

.benefit-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Warning Section */
.warning {
  padding: 4rem 0;
  background: var(--white);
}

.warning-box {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.warning h2 {
  color: #92400e;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.warning-text {
  color: #78350f;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 0;
  background: var(--bg-light);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.checkbox-group {
  text-align: left;
  margin: 1rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

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

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

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

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

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

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

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

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

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

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

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

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

.btn-cookie {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

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

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

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Page */
.about-content {
  padding: 4rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  align-items: start;
}

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--primary-blue);
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.values {
  padding: 4rem 0;
  background: var(--bg-light);
}

.values h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.approach {
  padding: 4rem 0;
  background: var(--white);
}

.approach h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

.approach-content p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cta-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

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

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-box p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.contact-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-form-wrapper > p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-image {
  padding: 2rem 0;
  background: var(--bg-light);
}

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

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

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

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

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.thank-you-message {
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.thank-you-content p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.next-steps {
  padding: 4rem 0;
  background: var(--bg-light);
}

.next-steps h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

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

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Legal Pages */
.legal-content {
  padding: 4rem 0;
  background: var(--white);
}

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

.legal-text h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--text-dark);
}

.legal-text h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary-blue);
}

.legal-text p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-text ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-gray);
}

.legal-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-text a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.disclaimer-warning {
  background: #fef3c7;
  border: 3px solid #f59e0b;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.disclaimer-warning h2 {
  color: #92400e;
  margin-top: 0;
}

.large-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  color: #78350f;
}

.disclaimer-final {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

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

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

  .care-grid,
  .benefits-list,
  .values-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

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

  .thank-you-actions .btn-primary,
  .thank-you-actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .intro,
  .product,
  .care,
  .benefits,
  .warning,
  .newsletter,
  .about-content,
  .values,
  .approach,
  .contact-section,
  .thank-you-section,
  .next-steps,
  .legal-content {
    padding: 2rem 0;
  }
}
