:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary-color: #f7f7f7;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --dark: #1a1a1a;
}

* {
  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-color);
  line-height: 1.6;
  background-color: var(--white);
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  padding: 1rem 0;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

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

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

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.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(255, 107, 53, 0.85), rgba(26, 26, 26, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.category-card h4 {
  margin-top: 1rem;
  color: var(--primary-color);
}

.benefit-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.benefit-card h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.info-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.footer {
  margin-top: 3rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.page-header {
  padding: 4rem 0;
}

.product-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-card h4 {
  color: var(--primary-color);
  margin-top: 1rem;
}

.product-card .text-muted {
  font-size: 0.9rem;
  font-weight: 600;
}

.approach-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.approach-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-box {
  padding: 1.5rem;
}

.feature-icon {
  margin-bottom: 1rem;
}

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

.contact-info {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
}

.contact-detail {
  padding-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.thank-you-box {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.success-icon {
  text-align: center;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 3rem;
}

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

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .product-card img,
  .category-card img {
    height: 200px;
  }

  .thank-you-box {
    padding: 2rem 1rem;
  }
}
