:root {
  --primary-color: #4fc3f7;
  --primary-hover: #29b6f6;
  --secondary-color: #e8f5e9;
  --text-dark: #2c3e50;
  --text-light: #546e7a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px 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;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

html {
  scroll-behavior: smooth;
}

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

.main-header .navbar {
  padding: 1rem 0;
}

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

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

.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-hover));
  color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 0.5rem 1.5rem;
}

.btn-cta:hover {
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

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

.content-section {
  padding: 80px 0;
}

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

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

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

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

.img-fluid {
  max-width: 100%;
  height: auto;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  background-color: var(--bg-white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.info-box {
  background-color: var(--secondary-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.info-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.main-footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 50px 0 20px;
}

.main-footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.main-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.btn-cookie {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie.accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-cookie.accept:hover {
  background-color: var(--primary-hover);
}

.btn-cookie.decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid var(--bg-white);
}

.btn-cookie.decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie.settings {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

.btn-cookie.settings:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.policy-section {
  padding: 120px 0 80px;
  margin-top: 60px;
}

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

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

.policy-section p,
.policy-section ul {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 2rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 120px 0 80px;
  margin-top: 60px;
  min-height: calc(100vh - 300px);
}

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

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

.thank-you-actions {
  margin-top: 2rem;
}

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

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

  .hero-section {
    padding: 100px 0 60px;
  }

  .content-section {
    padding: 60px 0;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

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

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

  .thank-you-section h1 {
    font-size: 2rem;
  }

  .policy-section h1 {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}
