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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #7c3aed !important;
  font-weight: 700;
}

.navbar-light .navbar-nav .nav-link {
  color: #4a5568;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #7c3aed;
}

.hero-section {
  background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
  padding: 4rem 0;
}

.min-vh-75 {
  min-height: 75vh;
}

.btn-primary {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #6b21a8;
  border-color: #6b21a8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
  color: #7c3aed;
  border-color: #7c3aed;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.text-primary {
  color: #7c3aed !important;
}

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

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
}

.icon-circle-lg {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f8f5ff 0%, #e9d5ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #7c3aed;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  padding: 4rem 0;
}

.page-header {
  border-bottom: 1px solid #e2e8f0;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

footer a:hover {
  color: #a78bfa !important;
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #a78bfa;
  text-decoration: underline;
}

.contact-form .form-control {
  border: 2px solid #e2e8f0;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

.content-section h2 {
  color: #1a202c;
  margin-top: 2rem;
}

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

.content-section p,
.content-section ul {
  color: #4a5568;
}

.content-section ul {
  margin-left: 1.5rem;
}

.success-icon {
  display: inline-block;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

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

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle-lg {
    width: 80px;
    height: 80px;
  }
}

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

  .cookie-banner .btn:last-child {
    margin-bottom: 0;
  }
}

.border-bottom {
  border-bottom: 1px solid #e2e8f0 !important;
}

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}
