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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.btn-primary:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

a {
  color: #6f42c1;
  text-decoration: none;
}

a:hover {
  color: #5a32a3;
  text-decoration: underline;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(111, 66, 193, 0.15) !important;
}

.text-primary {
  color: #6f42c1 !important;
}

.bg-primary {
  background-color: #6f42c1 !important;
}

.badge-primary {
  background-color: #6f42c1;
}

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
}

footer h6 {
  color: #fff;
}

footer a {
  color: #bdc3c7;
}

footer a:hover {
  color: #fff;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.hero-section {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-section {
  background-color: #f8f9fa;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
}

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

.cookie-banner button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #6f42c1;
  color: #fff;
}

.cookie-accept:hover {
  background-color: #5a32a3;
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid #ecf0f1;
  color: #fff;
}

.cookie-decline:hover {
  background-color: rgba(111, 66, 193, 0.1);
}

.form-control {
  border-color: #ddd;
}

.form-control:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.custom-control-input:checked ~ .custom-control-label {
  color: inherit;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #6f42c1;
  border-color: #6f42c1;
}

.alert-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: #004085;
}

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

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

  .cookie-banner-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .navbar {
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  footer {
    text-align: center;
  }
}
