* {
  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: #2c3e50;
  background-color: #ffffff;
}

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

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

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

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

.btn-accept {
  background: #3498db;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-accept:hover {
  background: #2980b9;
}

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

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

.logo a {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: -1px;
}

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

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

.nav a:hover,
.nav a.active {
  color: #3498db;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: #3498db;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

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

.intro-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.intro-text p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #555;
}

/* Product Section */
.product-section {
  padding: 80px 0;
}

.product-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.product-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.product-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.ingredients {
  margin-bottom: 30px;
}

.ingredients h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

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

.ingredients li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

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

.recommendation {
  background: #e8f4f8;
  padding: 20px;
  border-radius: 5px;
  border-left: 4px solid #3498db;
}

.recommendation p {
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
}

/* Care Section */
.care-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.care-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

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

.care-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

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

.care-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.care-card p {
  font-size: 16px;
  color: #555;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefits-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.benefit-number {
  width: 60px;
  height: 60px;
  background: #3498db;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.benefit-content p {
  font-size: 16px;
  color: #555;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 80px 0;
  background: #fff3cd;
}

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

.disclaimer-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #856404;
}

.disclaimer-large {
  font-size: 24px;
  font-weight: 700;
  color: #856404;
  margin-bottom: 20px;
  line-height: 1.4;
}

.disclaimer-box p {
  font-size: 16px;
  color: #856404;
  margin-bottom: 15px;
}

.disclaimer-links {
  margin-top: 30px;
}

.disclaimer-links a {
  color: #3498db;
  text-decoration: underline;
  font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: #2c3e50;
  color: #ffffff;
}

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

.newsletter-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.newsletter-box p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

.btn-primary {
  background: #3498db;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-secondary {
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  padding: 13px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #3498db;
  color: #ffffff;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
}

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

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-col p {
  margin-bottom: 10px;
  opacity: 0.8;
}

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

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

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

.footer-col a:hover {
  opacity: 1;
}

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

/* Page Header */
.page-header {
  background: #3498db;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

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

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

/* About Content */
.about-content {
  padding: 80px 0;
}

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

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-text h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

.values-section,
.expertise-section,
.location-section,
.contact-info-about {
  margin-bottom: 60px;
}

.values-section h2,
.expertise-section h2,
.location-section h2,
.contact-info-about h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #2c3e50;
}

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.value-card p {
  font-size: 16px;
  color: #555;
}

.expertise-content,
.location-content {
  max-width: 800px;
  margin: 0 auto;
}

.expertise-content p,
.location-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

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

.expertise-list li {
  padding: 15px 0;
  padding-left: 30px;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-size: 16px;
}

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

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

.contact-content {
  padding: 80px 0;
}

.contact-hero-image {
  margin-bottom: 3rem;
}

.contact-hero-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-info-box,
.newsletter-form-box {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.contact-info-box h2,
.newsletter-form-box h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #2c3e50;
}

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

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

.contact-item p {
  font-size: 16px;
  color: #555;
}

.contact-hours {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.contact-hours h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-hours p {
  font-size: 16px;
  color: #555;
}

.newsletter-form-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

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

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

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

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

.checkbox-label span {
  font-size: 14px;
  color: #555;
}

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

/* Thank You Section */
.thank-you-section {
  padding: 120px 0;
  text-align: center;
}

.thank-you-box {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
}

.thank-you-box h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.thank-you-message {
  font-size: 20px;
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 20px;
}

.thank-you-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

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

/* Legal Content */
.legal-content {
  padding: 60px 0;
}

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

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

.legal-text h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.legal-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.legal-text li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
}

.legal-text a {
  color: #3498db;
  text-decoration: underline;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid #856404;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 5px;
}

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

.large-text {
  font-size: 20px;
  font-weight: 700;
  color: #856404;
}

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

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

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

  .nav ul {
    gap: 15px;
  }

  .nav a {
    font-size: 14px;
  }

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

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

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

@media (max-width: 480px) {
  .logo a {
    font-size: 24px;
  }

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

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

  .intro-text h2,
  .product-section h2,
  .care-section h2,
  .benefits-section h2 {
    font-size: 28px;
  }
}
