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

html {
  scroll-behavior: smooth;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  z-index: 1000;
  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;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.btn-accept {
  background-color: #ff4444;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-accept:hover {
  background-color: #cc0000;
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #ff4444;
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ff4444;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 0;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

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

.section-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

/* Intro Section */
.intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.intro-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.intro-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333;
}

/* Product Section */
.product-section {
  background-color: #f9f9f9;
}

.product-card {
  display: flex;
  gap: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

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

.product-info {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.product-info h3 {
  font-size: 26px;
  color: #ff4444;
  margin-bottom: 15px;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.ingredients,
.usage-info {
  margin-bottom: 25px;
}

.ingredients h4,
.usage-info h4 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

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

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

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

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

.care-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px 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;
}

.care-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.care-card p {
  color: #555;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background-color: #f9f9f9;
}

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

.benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid #ff4444;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #ff4444;
  margin-bottom: 10px;
}

.benefit-item h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #555;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #ffffff;
}

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

.newsletter-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.newsletter-box p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.newsletter-form-inline {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form-inline input {
  flex: 1;
  min-width: 250px;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form-inline button {
  padding: 12px 30px;
}

/* Warning Section */
.warning-section {
  background-color: #fff9f9;
}

.warning-box {
  background-color: #ffffff;
  border: 3px solid #ff4444;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

.warning-box h2 {
  font-size: 28px;
  color: #ff4444;
  margin-bottom: 20px;
}

.warning-text {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.warning-box p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.link-underline {
  color: #ff4444;
  text-decoration: underline;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background-color: #ff4444;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #cc0000;
}

.btn-secondary {
  background-color: #e8e8e8;
  color: #1a1a1a;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #d0d0d0;
}

.btn-full {
  width: 100%;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 50px 20px 20px;
}

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

.footer-brand {
  font-size: 24px;
  color: #ff4444;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  color: #cccccc;
  line-height: 1.8;
}

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

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

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

.footer-links a:hover {
  color: #ff4444;
}

.footer-col a {
  color: #ff4444;
  text-decoration: none;
}

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

/* About Page */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-main-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text-content h2 {
  font-size: 26px;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #333;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4444;
  font-weight: 700;
  font-size: 18px;
}

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

.value-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border-top: 3px solid #ff4444;
}

.value-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.value-card p {
  color: #555;
  line-height: 1.6;
}

.info-box {
  background-color: #fff9f9;
  border-left: 4px solid #ff4444;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.info-box h3 {
  font-size: 18px;
  color: #ff4444;
  margin-bottom: 10px;
}

.info-box p {
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.info-box-small {
  background-color: #f9f9f9;
  border-left: 3px solid #999;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.info-box-small p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

/* Contact Info Section */
.contact-info-section {
  background-color: #f9f9f9;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-info-card h3 {
  font-size: 20px;
  color: #ff4444;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: #333;
  line-height: 1.8;
}

.contact-info-card a {
  color: #ff4444;
  text-decoration: none;
  font-weight: 600;
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-info-box h2 {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 25px;
}

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

.contact-detail-item {
  margin-bottom: 20px;
}

.contact-detail-item strong {
  display: block;
  color: #ff4444;
  margin-bottom: 5px;
  font-size: 16px;
}

.contact-detail-item p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.contact-detail-item a {
  color: #ff4444;
  text-decoration: none;
  font-weight: 600;
}

.contact-image {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-box h2 {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-form-box > p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

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

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

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e8e8e8;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

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

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-label span {
  color: #333;
  line-height: 1.5;
}

.checkbox-label a {
  color: #ff4444;
  text-decoration: underline;
}

.form-note {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}

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

.thank-you-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.thank-you-box h1 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.thank-you-message {
  font-size: 18px;
  color: #ff4444;
  font-weight: 600;
  margin-bottom: 15px;
}

.thank-you-box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

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

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

.legal-content h2 {
  font-size: 24px;
  color: #1a1a1a;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content h3 {
  font-size: 20px;
  color: #333;
  margin-top: 25px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content a {
  color: #ff4444;
  text-decoration: underline;
}

.warning-box-legal {
  background-color: #fff9f9;
  border: 3px solid #ff4444;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

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

.warning-text-large {
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

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

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

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

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

  .intro-content {
    flex-direction: column;
  }

  .intro-image {
    max-width: 100%;
  }

  .product-card {
    flex-direction: column;
  }

  .product-info {
    padding: 30px 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form-inline input {
    width: 100%;
  }

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

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

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

@media (max-width: 480px) {
  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .section {
    padding: 40px 15px;
  }

  .page-header {
    padding: 40px 15px;
  }

  .page-header h1 {
    font-size: 28px;
  }

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

  .logo {
    font-size: 24px;
  }
}
