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

:root {
  --primary-blue: #0066cc;
  --dark-blue: #003d7a;
  --light-blue: #4d94e6;
  --text-dark: #1a1a1a;
  --text-gray: #4a4a4a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-green: #28a745;
  --warning-red: #dc3545;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  z-index: 9999;
  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;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

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

.btn-accept {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

/* Header and Navigation */
header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  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: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  /* Added background image overlay */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/hero-vitamins.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Product Info Section */
.product-info {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-details h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.product-details p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 17px;
  color: var(--text-gray);
}

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

.note {
  background-color: var(--bg-light);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  font-size: 16px;
  color: var(--text-gray);
}

/* Care Section */
.care-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.care-section h2 {
  text-align: center;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

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

.care-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.care-card h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.care-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Advantages Section */
.advantages {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.advantages h2 {
  text-align: center;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.advantage-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
  font-weight: bold;
}

.advantage-item h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.advantage-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.newsletter-box h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.newsletter-box > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.newsletter-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.newsletter-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--primary-blue);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--dark-blue);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff9e6;
  border: 3px solid var(--warning-red);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}

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

.disclaimer-text {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.disclaimer-box p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.link-disclaimer {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.link-disclaimer:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--bg-white);
}

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

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

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

.footer-col ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--light-blue);
}

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

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

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

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

.last-updated {
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

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

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  margin-bottom: 80px;
}

.about-values h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
}

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

.value-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-blue);
}

.value-card h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.about-approach {
  margin-bottom: 80px;
}

.about-approach h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-approach p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.approach-list {
  list-style: none;
  margin: 30px 0;
}

.approach-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 17px;
  color: var(--text-gray);
}

.approach-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 20px;
}

.approach-note {
  background-color: #fff9e6;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--warning-red);
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 30px;
}

.about-location h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.location-info {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.location-details h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.location-details p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

/* Added styles for contact image */
.contact-image {
  margin-bottom: 30px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form-wrapper > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

.contact-item h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-note {
  background-color: #fff9e6;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--warning-red);
}

.contact-note h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-note p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.form-note {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 15px;
  font-style: italic;
}

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

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  font-weight: bold;
}

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

.thank-you-message {
  font-size: 20px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.thank-you-note {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
}

.thank-you-note h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.thank-you-note ul {
  list-style: none;
  padding-left: 0;
}

.thank-you-note ul li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: var(--text-gray);
}

.thank-you-note ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 18px;
}

/* Policy Pages */
.policy-content {
  padding: 80px 0;
}

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

.policy-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-text h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-text p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-text ul li {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-text a {
  color: var(--primary-blue);
  text-decoration: none;
}

.policy-text a:hover {
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-weight: 600;
}

.cookie-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

/* Disclaimer Specific Styles */
.disclaimer-highlight .warning-box {
  background-color: #fff9e6;
  border: 3px solid var(--warning-red);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

  .newsletter-box {
    padding: 30px 20px;
  }

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

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

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

  .cookie-table {
    font-size: 14px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }
}
