:root {
  --primary: #1a1a1a;
  --secondary: #f5c52c;
  --accent: #2c2c2c;
  --light: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --border: #dee2e6;
}

* {
  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;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-link {
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
}

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

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 2rem;
}

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

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

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

.info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.info-section img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.products-section {
  background-color: var(--light);
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.category-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.category-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.solution-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.solution-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.solution-content {
  padding: 1.5rem;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.text-link {
  color: var(--secondary);
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary);
}

.cert-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

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

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

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

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

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

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

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

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

.footer a:hover {
  color: var(--secondary) !important;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

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

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

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

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

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(245, 197, 44, 0.25);
}

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

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

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

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

.policy-content {
  font-size: 1rem;
}

.policy-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.policy-section h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

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

  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

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

  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 992px) {
  .cookie-banner .btn {
    margin-bottom: 0.5rem;
    width: 100%;
  }
}
