:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --secondary-color: #6c757d;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --text-dark: #212529;
  --text-light: #6c757d;
  --border-color: #dee2e6;
}

* {
  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-dark);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section {
  padding: 60px 0;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 0 60px;
  margin-bottom: 0;
}

.page-header h1 {
  color: white;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--primary-color);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefit-item {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-item h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-section h2,
.cta-section .lead {
  color: white;
}

.footer {
  margin-top: 60px;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white !important;
  text-decoration: none;
}

.contact-info h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.thank-you-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.policy-content h3 {
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content table {
  margin: 30px 0;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
  border-bottom: none;
}

.feature-box {
  padding: 20px;
  background: white;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(52, 58, 64, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

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

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

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

.cookie-banner a:hover {
  color: #b0e0ff;
}

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

  .section {
    padding: 40px 0;
  }

  .page-header {
    padding: 60px 0 40px;
  }

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

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-top: 10px;
  }
}
