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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.cookie-banner.hidden {
  display: none;
}

.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;
  min-width: 250px;
}

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

.cookie-accept {
  background: #ffd700;
  color: #1a1a1a;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-accept:hover {
  background: #ffc700;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffd700;
}

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

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffc700 100%);
  padding: 60px 0;
  text-align: center;
  color: #1a1a1a;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.last-updated {
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}

.page-header-warning {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: #fff;
}

.warning-text {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

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

.section-light {
  background: #f9f9f9;
}

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

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

.intro-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.intro-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Product Section */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.product-info p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  margin: 25px 0;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  font-size: 17px;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: 700;
  font-size: 20px;
}

.note {
  background: #fffbea;
  padding: 15px;
  border-left: 4px solid #ffd700;
  margin-top: 20px;
  font-size: 16px;
}

/* 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 5px 15px rgba(0, 0, 0, 0.08);
  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: 22px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

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

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

.benefit-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
  transition: border-color 0.3s;
}

.benefit-item:hover {
  border-color: #ffd700;
}

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

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

/* Disclaimer Section */
.disclaimer-section {
  background: #fff3cd;
  border-top: 5px solid #ffd700;
  border-bottom: 5px solid #ffd700;
}

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

.disclaimer-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.disclaimer-text {
  font-size: 19px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.disclaimer-text strong {
  color: #d32f2f;
  font-size: 21px;
}

/* Newsletter Section */
.section-newsletter {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
}

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

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

.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-input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-button {
  padding: 15px 30px;
  background: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-button:hover {
  background: #ffc700;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.mission-card {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd700;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
}

/* Experience Section */
.experience-content {
  max-width: 800px;
  margin: 0 auto;
}

.experience-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.value-item {
  text-align: center;
  padding: 30px;
}

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

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

.value-item p {
  color: #666;
  line-height: 1.6;
}

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

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a1a1a;
}

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

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

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

/* Contact Form */
.contact-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  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: #ffd700;
}

.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: 4px;
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #ffc700;
}

/* Map Section */
.map-placeholder {
  text-align: center;
}

.map-placeholder img {
  width: 100%;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-text {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
}

/* Thank You Page */
.thank-you-section {
  padding: 100px 0;
}

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

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

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

.thank-you-text {
  font-size: 20px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 20px;
}

.thank-you-box p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #ffd700;
  color: #1a1a1a;
}

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

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: #fff;
}

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

.expect-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.expect-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.expect-item p {
  color: #666;
  line-height: 1.6;
}

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

.policy-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.policy-content h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #333;
}

.policy-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 30px;
}

.policy-content li {
  font-size: 17px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-content a {
  color: #ffd700;
  text-decoration: underline;
}

.large-text {
  font-size: 20px;
  line-height: 1.8;
}

.warning-box {
  background: #fff3cd;
  border: 3px solid #ffd700;
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
}

.warning-box h2,
.warning-box h3 {
  color: #d32f2f;
  margin-bottom: 15px;
}

.section-warning {
  background: #ffebee;
  border-top: 5px solid #d32f2f;
  border-bottom: 5px solid #d32f2f;
}

.final-warning {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-warning h2 {
  font-size: 32px;
  color: #d32f2f;
  margin-bottom: 25px;
}

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

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

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffd700;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 10px;
}

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

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

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

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

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

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

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

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

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

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

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

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

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

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

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

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

  .hero {
    padding: 50px 0;
  }

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

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