:root {
  --primary-color: #fdb813;
  --primary-dark: #e5a50b;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --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;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-dark) !important;
  letter-spacing: 0.5px;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.btn-outline-dark {
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.product-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

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

.product-card img {
  height: 250px;
  object-fit: cover;
}

.info-card,
.offering-card,
.audience-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-card:hover,
.offering-card:hover,
.audience-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

.badge-card {
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.badge-card:hover {
  border-color: var(--primary-color);
}

.badge-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.testimonial-card {
  background-color: white;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #34495e);
  padding: 4rem 0;
}

.footer {
  background-color: #1a1a1a;
}

.footer a {
  transition: color 0.3s ease;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.page-header {
  background: linear-gradient(135deg, var(--bg-light), #e9ecef);
}

.product-detail-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.product-detail-card img {
  border-radius: 8px;
}

.contact-form-card {
  background-color: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

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

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

.thank-you-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.min-vh-75 {
  min-height: 75vh;
}

.policy-content h2 {
  margin-top: 2rem;
  color: var(--secondary-color);
}

.policy-content h5 {
  color: var(--secondary-color);
}

.value-card {
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-color);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.routine-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}

.routine-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

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

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .badge-icon {
    font-size: 2rem;
  }
}
