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

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

header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.navbar-brand:hover {
  color: #7c3aed;
}

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

.nav-link:hover {
  color: #8b5cf6;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
  background-color: #e5e5e5;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #d4d4d4;
  color: #2d2d2d;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
}

section {
  padding: 5rem 0;
}

.bg-light {
  background-color: #f5f5f4;
}

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

.display-3 {
  font-size: 3.5rem;
  font-weight: 800;
}

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

p {
  line-height: 1.8;
  color: #4a4a4a;
}

.img-fluid {
  border-radius: 12px;
}

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

.alert {
  border-radius: 8px;
  border: none;
}

.alert-info {
  background-color: #ede9fe;
  color: #5b21b6;
}

.alert-warning {
  background-color: #fef3c7;
  color: #92400e;
}

.card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-header {
  background-color: #fafaf9;
  border-bottom: 1px solid #e5e5e5;
  padding: 1rem 1.25rem;
}

.card-header button {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

.card-header button:hover {
  color: #8b5cf6;
  text-decoration: none;
}

.card-body {
  padding: 1.25rem;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e5e5e5;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.15);
}

label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #7c3aed;
  text-decoration: underline;
}

footer {
  margin-top: 5rem;
}

footer h5,
footer h6 {
  color: white;
  font-weight: 700;
}

footer a {
  transition: color 0.2s ease;
}

footer a:hover {
  color: #8b5cf6;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-consent p {
  color: white;
  font-size: 0.95rem;
}

.cookie-consent .btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.success-icon {
  display: inline-block;
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }

  .btn-primary.ml-3 {
    margin-left: 0;
    margin-top: 1rem;
  }

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

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

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .hero-section .lead {
    font-size: 1.1rem;
  }

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

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