:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a017;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.hero-section h1 {
  color: var(--secondary-color);
}

.hero-section .lead {
  color: var(--text-light);
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

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

.benefit-card,
.product-card,
.testimonial-card,
.approach-card,
.tip-card,
.next-step-card,
.contact-info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  height: 100%;
}

.benefit-card:hover,
.product-card:hover,
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  color: var(--primary-color);
}

.product-card img {
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 1rem -2rem;
  width: calc(100% + 4rem);
}

.product-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.product-detail-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.product-detail-info h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-features li:before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.product-detail-info .btn {
  margin-top: auto;
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
}

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

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

.bg-primary {
  background-color: var(--secondary-color);
}

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

.page-header h1 {
  color: var(--secondary-color);
}

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

.form-label {
  font-weight: 600;
  color: var(--text-dark);
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
}

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

.thank-you-content {
  padding: 3rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you-icon {
  color: var(--primary-color);
}

.legal-content {
  max-width: 100%;
}

.legal-content h2 {
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.legal-content h4 {
  color: var(--secondary-color);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

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

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  transition: color 0.3s;
}

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

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

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

.cookie-consent-content p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-consent-buttons .btn {
  width: 100%;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings-content {
  background: var(--white);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-settings-header {
  padding: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-header h3 {
  margin: 0;
  color: var(--secondary-color);
}

.close-settings {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

.cookie-settings-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cookie-category-header input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-category p {
  margin-left: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookie-settings-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--border-color);
  display: flex;
  gap: 1rem;
}

.cookie-settings-footer .btn {
  flex: 1;
}

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

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

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-settings-footer {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }
}
