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

:root {
  --primary: #ffc107;
  --secondary: #1a1a1a;
  --light: #f8f9fa;
  --dark: #212529;
  --border: #dee2e6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  margin-top: 70px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar-dark {
  background-color: var(--secondary) !important;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-weight: 600;
  padding: 12px 30px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-light {
  color: white;
  border-color: white;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--secondary);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    text-align: center;
  }

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

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

  .hero-buttons {
    justify-content: center;
  }
}

.services {
  background: white;
}

.service-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: #666;
}

.supplements,
.skincare {
  position: relative;
}

.supplements h2,
.skincare h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

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

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

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

.supplements img,
.skincare img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.benefit-item {
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 30px;
}

.benefit-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary);
}

.benefit-item p {
  color: #666;
  font-size: 0.95rem;
}

.testimonials {
  background: white;
}

.testimonial-card {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}

.experts {
  background: #f8f9fa;
}

.expert-card {
  margin-bottom: 30px;
}

.expert-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.expert-card h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-top: 15px;
}

.expert-card p {
  color: var(--primary);
  font-weight: 500;
  margin-top: 5px;
}

.faq {
  background: white;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  color: #666;
  margin: 0;
}

.cta-footer {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #000;
}

.cta-footer h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-footer .lead {
  color: #000;
}

.footer {
  background: var(--secondary);
  color: white;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer .text-sm {
  font-size: 0.85rem;
}

.footer p {
  color: #ccc;
}

.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.about-hero h1 {
  font-weight: 700;
  font-size: 3rem;
}

.about-hero .lead {
  font-size: 1.5rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 30px;
}

.about-content .lead {
  font-size: 1.1rem;
  color: #555;
}

.principle-card {
  padding: 20px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.principle-card:last-child {
  border-bottom: none;
}

.principle-card h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.principle-card p {
  color: #666;
  margin: 0;
}

.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.contact-hero h1 {
  font-weight: 700;
  font-size: 3rem;
}

.contact-info {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.contact-info:last-child {
  border-bottom: none;
}

.contact-info h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.contact-form .form-control {
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 10px 15px;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.contact-form .form-check-label {
  margin-bottom: 0;
}

.contact-form .form-check-label a {
  color: var(--primary);
  text-decoration: none;
}

.thank-you-content {
  padding: 50px 0;
}

.thank-you h1 {
  color: var(--secondary);
  font-weight: 700;
}

.thank-you .lead {
  color: #666;
}

.policy-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.policy-header h1 {
  font-weight: 700;
  font-size: 2.5rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.policy-content h4 {
  font-weight: 600;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content p,
.policy-content li {
  color: #666;
  line-height: 1.8;
}

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

.policy-content li {
  margin-bottom: 10px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  color: white;
  padding: 20px;
  z-index: 9999;
  border-top: 4px solid var(--primary);
  display: none;
}

#cookie-banner.show {
  display: block;
}

#cookie-banner p {
  margin: 0 0 15px 0;
}

#cookie-banner button {
  margin-right: 10px;
  margin-bottom: 10px;
}

.cta-section {
  background: #f8f9fa;
  text-align: center;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
}

.cta-section .lead {
  color: #666;
}
