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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  color: #1a1a1a;
}

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

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

.brand-logo {
  color: #dc3545;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  color: #1a1a1a !important;
}

.nav-link {
  color: #666666 !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #dc3545 !important;
}

.hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-section h1 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 6px;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 6px;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}

.categories-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.category-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.category-card p {
  color: #666666;
  margin-bottom: 1.5rem;
}

.features-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.feature-box {
  padding: 2rem;
  border-left: 4px solid #dc3545;
  background-color: #f8f9fa;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-box h4 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: #666666;
  margin-bottom: 0;
}

.cta-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #cccccc;
}

.page-header {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
  color: #1a1a1a;
}

.page-header .lead {
  color: #666666;
}

.products-grid {
  padding: 60px 0;
}

.product-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #dc3545;
}

.product-card h4 {
  color: #1a1a1a;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: #666666;
  font-size: 0.95rem;
}

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

.education-box {
  background-color: #f8f9fa;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
}

.education-box h4 {
  color: #1a1a1a;
}

.education-box p {
  color: #666666;
  line-height: 1.7;
}

.info-box {
  background-color: #f8f9fa;
  border-radius: 8px;
}

.info-box h4 {
  color: #1a1a1a;
}

.info-box ul {
  color: #666666;
  padding-left: 1.5rem;
}

.info-box li {
  margin-bottom: 0.5rem;
}

.values-box {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.values-box:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.values-box h4 {
  color: #1a1a1a;
}

.values-box p {
  color: #666666;
}

.contact-info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-info-section h2 {
  color: #1a1a1a;
}

.contact-info-section h5 {
  color: #1a1a1a;
}

.contact-info-section p {
  color: #666666;
}

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

.contact-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-box h5 {
  color: #1a1a1a;
}

.contact-box p {
  color: #666666;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-form .form-group label {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem;
  color: #1a1a1a;
  background-color: #ffffff;
}

.contact-form .form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  color: #1a1a1a;
}

.contact-form .custom-checkbox .custom-control-label {
  color: #666666;
}

.contact-form .custom-checkbox .custom-control-label a {
  color: #dc3545;
  text-decoration: underline;
}

.contact-form .custom-checkbox .custom-control-label a:hover {
  color: #c82333;
}

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

.thank-you-section h1 {
  color: #dc3545;
  margin-bottom: 1.5rem;
}

.thank-you-section p {
  color: #666666;
}

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

.legal-section h2 {
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #dc3545;
  padding-bottom: 0.5rem;
}

.legal-section h2:first-child {
  margin-top: 0;
}

.legal-section p {
  color: #666666;
  line-height: 1.8;
}

.legal-section ul {
  color: #666666;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: #dc3545;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #c82333;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer h5 {
  color: #ffffff;
}

.footer p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer a:hover {
  color: #dc3545;
}

.footer hr {
  background-color: #333333;
}

.footer .text-white-50 {
  color: #cccccc !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  flex: 1;
}

.cookie-content p a {
  color: #dc3545;
  text-decoration: underline;
}

.cookie-content p a:hover {
  color: #ff6b6b;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

  .categories-section {
    padding: 40px 0;
  }

  .features-section {
    padding: 40px 0;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-content p {
    flex: none;
  }

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

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

  .contact-form {
    padding: 1.5rem;
  }

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

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

  .text-md-right {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

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

  .product-card img {
    height: 150px;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .values-box {
    padding: 1.5rem;
  }

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