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

:root {
  --primary-color: #2c5f8d;
  --primary-dark: #1e3f5a;
  --primary-light: #4a7ba7;
  --accent-color: #5a9fd4;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --text-light: #777777;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #e9ecef;
  --border-color: #dee2e6;
}

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

.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-white) !important;
  letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bg-white) !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 141, 0.85) 0%, rgba(30, 63, 90, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
  font-size: 1.35rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.content-section h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.content-section p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-section .lead {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
}

.page-header h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card p {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
  margin-bottom: 0 !important;
  font-style: normal !important;
}

.faq-section {
  background-color: var(--bg-white);
}

.faq-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--accent-color);
}

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-body h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-body p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.ingredients-block {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.ingredients-block h6 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.ingredients-block ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.ingredients-block li {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.value-item {
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.value-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 141, 0.15);
}

.contact-info h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.thank-you-content {
  max-width: 700px;
  margin: 4rem auto;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.legal-text h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text h4 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text h5 {
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-text p,
.legal-text li {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer h5 {
  color: var(--bg-white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--bg-white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--bg-white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 6px;
}

.cookie-customize {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
}

.cookie-customize h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
}

.cookie-option p {
  margin: 0;
  padding-left: 1.75rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1.1rem;
  }

  .hero-image {
    height: 350px;
  }

  .content-section h2 {
    font-size: 1.65rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    font-size: 1rem;
    padding: 0.65rem 1.5rem;
  }

  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
}

img.rounded {
  border-radius: 10px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
