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

:root {
  --primary: #6f42c1;
  --secondary: #757575;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --border: #e0e0e0;
}

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  color: #333;
  background-color: #fff;
}

main,
section {
  flex: 1;
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-section h1 {
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-primary {
  background-color: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #5a33a7;
  border-color: #5a33a7;
  color: #fff;
}

.btn-outline-primary {
  color: #6f42c1;
  border-color: #6f42c1;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: #6f42c1;
  font-weight: bold;
}

.border-left-primary {
  border-left: 4px solid #6f42c1 !important;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  color: #6f42c1 !important;
  font-size: 1.5rem;
}

.navbar-light .navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #6f42c1 !important;
}

footer {
  background-color: #1a1a1a;
  margin-top: auto;
}

.text-muted {
  color: #999 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-secondary {
  background-color: #e0e0e0 !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.container {
  max-width: 1200px;
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

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

.text-secondary {
  color: #666 !important;
}

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

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

  .hero-section p {
    font-size: 1rem;
  }

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

  .lead {
    font-size: 1rem;
  }

  .cookie-banner .row {
    flex-direction: column;
  }

  .cookie-banner .col-md-4 {
    text-align: left !important;
    margin-top: 15px;
  }

  .btn-sm {
    margin-top: 5px;
  }
}

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

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

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

  .card {
    margin-bottom: 20px;
  }
}
