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

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --secondary: #a78bfa;
  --background: #ffffff;
  --surface: #f9fafb;
  --text: #111827;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

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

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Header */
.header {
  background-color: var(--background);
  border-bottom: 2px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-dark);
}

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

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

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

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background-color: rgba(124, 58, 237, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

.section-alt {
  background-color: var(--surface);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

.page-header {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
  padding: 60px 0;
  text-align: center;
}

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

.subtitle {
  font-size: 18px;
  color: var(--text-light);
}

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

.text-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

.text-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Product Info */
.product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.product-details h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

.product-details h4 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.benefits-list ul {
  list-style: none;
  margin-top: 16px;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
}

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

/* Grids */
.care-grid,
.benefits-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.care-card,
.value-card {
  background-color: var(--background);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

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

.care-card h3,
.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.benefit-item {
  padding: 24px;
  background-color: var(--background);
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--primary);
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

/* Info Boxes */
.info-box {
  background-color: rgba(124, 58, 237, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 24px 0;
  border-radius: 8px;
}

.info-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
}

.warning-box {
  background-color: rgba(239, 68, 68, 0.1);
  border: 2px solid var(--error);
  padding: 30px;
  margin: 30px 0;
  border-radius: 12px;
  text-align: center;
}

.warning-box h2 {
  color: var(--error);
  font-size: 28px;
  margin-bottom: 16px;
}

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

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

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

.newsletter-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: white;
}

.newsletter-box p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  color: var(--text);
}

.newsletter-section .form-group label {
  color: white;
}

.form-input {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-section .form-input {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.newsletter-section .checkbox-label,
.newsletter-section .checkbox-label a {
  color: white;
}

.form-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

.newsletter-section .btn-primary {
  background-color: white;
  color: var(--primary);
}

.newsletter-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: rgba(239, 68, 68, 0.05);
}

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

.disclaimer-box h2 {
  font-size: 32px;
  color: var(--error);
  margin-bottom: 20px;
}

.disclaimer-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text);
}

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

.disclaimer-links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

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

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-text h3 {
  font-size: 24px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.check-list {
  list-style: none;
  margin: 16px 0;
}

.check-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 18px;
}

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

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

.contact-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text);
}

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

.contact-info-box {
  background-color: var(--surface);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.contact-info-box h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-details {
  margin: 30px 0;
  text-align: left;
}

.contact-details p {
  margin: 12px 0;
  font-size: 16px;
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  color: white;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-box h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--text);
}

.thank-you-message {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.thank-you-content {
  text-align: left;
  margin: 40px 0;
}

.thank-you-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 16px 0;
  margin-left: 20px;
}

.legal-content li {
  margin: 8px 0;
  line-height: 1.6;
}

/* FAQ */
.faq-content {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.faq-item {
  margin: 30px 0;
  padding: 24px;
  background-color: var(--background);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* Footer */
.footer {
  background-color: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

.footer-col h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-col p {
  margin-bottom: 12px;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: white;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text);
  color: white;
  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;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.btn-accept {
  background-color: var(--primary);
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

  .btn-accept {
    width: 100%;
  }
}
