:root {
  --primary-color: #fdb913;
  --primary-dark: #e5a300;
  --secondary-color: #2c3e50;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
}

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

html,
body {
  height: 100%;
}

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

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

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

.container {
  max-width: 1200px;
}

nav.navbar {
  background-color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark) !important;
}

.brand-logo {
  color: var(--primary-color);
  font-weight: 900;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark) !important;
  border: 2px solid var(--primary-color);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark) !important;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-link {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.feature-card {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.feature-card h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.how-to-section {
  padding: 80px 0;
}

.step-card {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonial-card {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-card small {
  color: #999;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-box {
  text-align: center;
  color: var(--text-dark);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.page-header {
  background-color: var(--light-bg);
  padding: 60px 0;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.2rem;
  color: #666;
}

.about-section {
  padding: 60px 0;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-list {
  margin-top: 2rem;
}

.value-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.value-item h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.why-choose-section {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
}

.choice-card {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.choice-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.team-section {
  padding: 80px 0;
}

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

.commitment-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.commitment-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.products-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--light-bg);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.highlight {
  background-color: var(--light-bg);
  color: var(--text-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-education-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.education-card {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.education-card h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.contact-section {
  padding: 80px 0;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: 8px;
  height: 100%;
}

.contact-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.contact-item p {
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-form-container {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: 8px;
}

.contact-form-container h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(253, 185, 19, 0.25);
}

.form-check-label {
  color: #666;
  font-weight: normal;
  margin-bottom: 0;
}

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

.faq-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.faq-item h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.thank-you-section {
  padding: 100px 0;
}

.thank-you-content {
  text-align: center;
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-greeting {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.thank-you-info {
  background-color: var(--text-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  color: #666;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.thank-you-footer {
  background-color: var(--text-light);
  padding: 1.5rem;
  border-radius: 4px;
  color: #666;
}

.thank-you-footer p {
  margin-bottom: 0.5rem;
}

.thank-you-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.policy-content {
  padding: 60px 0;
}

.policy-section {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.policy-section h2 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.policy-section h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  color: #666;
  line-height: 1.8;
  margin-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

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

.disclaimer-highlight {
  background: linear-gradient(135deg, rgba(253, 185, 19, 0.1) 0%, rgba(253, 185, 19, 0.05) 100%);
  border-left: 4px solid var(--primary-color);
}

.updated {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding-top: 60px;
  margin-top: 80px;
}

.footer-content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-address {
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 1.5rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

.cookie-content p:first-child {
  font-weight: 700;
}

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

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

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

  .section-title {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

  .about-section h2 {
    font-size: 1.5rem;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .product-highlights {
    justify-content: center;
  }

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

  .thank-you-actions .btn {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

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

  .row.align-items-center {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .features-section,
  .how-to-section,
  .testimonials-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container,
  .contact-info {
    margin-bottom: 2rem;
  }

  .contact-content {
    flex-direction: column;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
