:root {
  --primary-color: #4a90e2;
  --primary-dark: #357abd;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e1e8ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --border-radius: 8px;
}

* {
  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;
  background-color: var(--bg-white);
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

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

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
}

.btn-cta:hover {
  color: var(--bg-white);
  opacity: 0.9;
}

main {
  padding-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2fa 100%);
  padding: 5rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.btn-secondary {
  background-color: #6c757d;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: var(--bg-white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.rounded {
  border-radius: var(--border-radius);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.faq-item {
  background: var(--bg-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 2rem 0;
  margin-top: 5rem;
}

.footer a {
  color: var(--bg-white);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1rem;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.thank-you-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.policy-section {
  padding: 3rem 0;
  min-height: 500px;
}

.policy-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .content-section {
    padding: 3rem 0;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer a {
    margin-left: 0;
    margin-right: 1.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}
