:root {
  --primary: #6366f1;
  --secondary: #7c3aed;
  --dark: #1f2937;
  --light: #f9fafb;
  --border: #e5e7eb;
  --text: #374151;
}

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

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

html,
body {
  height: 100%;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

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

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.card {
  border: none;
  border-radius: 8px;
  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.1) !important;
}

.btn {
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-block {
  display: block;
  width: 100%;
}

.border-left {
  border-left: 4px solid;
}

.border-primary {
  border-left-color: var(--primary) !important;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease;
}

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

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

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

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
}

.alert-info {
  background-color: #dbeafe;
  color: #0c4a6e;
}

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

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

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

  .cookie-banner {
    position: static;
    margin-top: 20px;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

footer {
  margin-top: auto;
}
