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

:root {
  --primary-color: #8b5cf6;
  --primary-dark: #7c3aed;
  --primary-light: #a78bfa;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.navbar {
  box-shadow: var(--shadow);
}

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

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

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

.nav-item.active .nav-link {
  color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  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: var(--shadow-md);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

.hero-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.feature-box {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--bg-light);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.products-section {
  padding: 60px 0;
  background-color: var(--bg-white);
}

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

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

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.product-card .card-title {
  font-weight: 700;
  color: var(--text-dark);
}

.product-card .card-text {
  color: var(--text-light);
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.cta-section .btn-light {
  font-weight: 600;
  padding: 12px 40px;
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-header .lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

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

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

.content-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

.value-box {
  padding: 30px 20px;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.value-box h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-box p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-info-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.contact-details {
  margin: 30px 0;
}

.contact-details p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.info-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.info-box h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.info-box p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-box a {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.contact-info-box {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.contact-info-box h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-info-box p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.business-hours {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
}

.business-hours h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.business-hours p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form-box {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

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

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-check-label {
  color: var(--text-light);
  font-weight: 400;
}

.form-check-label a {
  color: var(--primary-color);
  font-weight: 600;
}

.thank-you-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.thank-you-box {
  background-color: var(--bg-white);
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

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

.thank-you-box h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.thank-you-box .lead {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.thank-you-box p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.thank-you-actions {
  margin-top: 40px;
}

.thank-you-actions .btn {
  margin: 0 10px;
}

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

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.policy-content ul {
  color: var(--text-light);
  margin-bottom: 20px;
  padding-left: 25px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer p {
  color: #d1d5db;
  margin-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  color: #9ca3af;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

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

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

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

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

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .thank-you-box {
    padding: 40px 20px;
  }

  .thank-you-box h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

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

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

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

  .features-section,
  .products-preview,
  .cta-section,
  .values-section {
    padding: 40px 0;
  }

  .contact-form-box {
    padding: 30px 20px;
  }
}
