* {
  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: #2c3e50;
  background-color: #fafbfc;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90a4 !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: #5a6c7d !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #4a90a4 !important;
}

.btn-nav-cta {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b7 100%);
  color: #ffffff !important;
  border-radius: 6px;
  padding: 0.5rem 1.2rem !important;
  margin-left: 0.5rem;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, #3d7a8a 0%, #4a90a4 100%);
  transform: translateY(-1px);
}

.btn-nav-link {
  color: #4a90a4;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #4a90a4;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-nav-link:hover {
  background-color: #4a90a4;
  color: #ffffff;
  text-decoration: none;
}

main {
  margin-top: 70px;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #4a90a4;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.05rem;
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-primary {
  background: linear-gradient(135deg, #4a90a4 0%, #5ba3b7 100%);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3d7a8a 0%, #4a90a4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 144, 164, 0.4);
  text-decoration: none;
  color: #ffffff;
}

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

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

.content-section.bg-light {
  background-color: #f8fafb;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.15rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rounded-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: #5a6c7d;
  line-height: 1.7;
}

.disclaimer-box {
  background-color: #e8f3f6;
  border-left: 4px solid #4a90a4;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 1rem;
}

.disclaimer-box ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.disclaimer-box strong {
  color: #2c3e50;
}

.faq-item {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #4a90a4;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.faq-item p {
  color: #5a6c7d;
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-box {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form .form-control {
  border: 1px solid #d4dce3;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #4a90a4;
  box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
  outline: none;
}

.contact-info {
  margin: 3rem 0;
  padding: 2rem;
  background-color: #f8fafb;
  border-radius: 10px;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #5a6c7d;
}

.final-note {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #e8f3f6;
  border-radius: 10px;
  border-left: 4px solid #4a90a4;
}

.final-note p {
  color: #5a6c7d;
  margin-bottom: 0;
}

.main-footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.main-footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.main-footer p {
  color: #cbd5e0;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links-inline {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links-inline li {
  margin: 0 1rem 0.5rem;
}

.footer-links-inline a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #3d5265;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: #cbd5e0;
}

.footer-bottom .small {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: #cbd5e0;
}

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

.btn-cookie {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-accept {
  background-color: #4a90a4;
  color: #ffffff;
}

.btn-cookie-accept:hover {
  background-color: #3d7a8a;
}

.btn-cookie-reject {
  background-color: #5a6c7d;
  color: #ffffff;
}

.btn-cookie-reject:hover {
  background-color: #4a5a68;
}

.btn-cookie-settings {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

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

.cookie-option label {
  display: flex;
  align-items: center;
  color: #2c3e50;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.8rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.thank-you-content {
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.thank-you-content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thank-you-content .lead {
  font-size: 1.3rem;
  color: #4a90a4;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-page {
  padding: 3rem 0;
  min-height: 70vh;
}

.policy-title {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-updated {
  color: #5a6c7d;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.policy-section h3 {
  font-size: 1.3rem;
  color: #4a90a4;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-section p {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-section ul li {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-section strong {
  color: #2c3e50;
  font-weight: 600;
}

.policy-section a {
  color: #4a90a4;
  text-decoration: underline;
}

.policy-section a:hover {
  color: #3d7a8a;
}

.alert-box {
  background-color: #fef3e8;
  border: 2px solid #f0a54d;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.alert-box h2 {
  color: #d97f29;
  margin-bottom: 1rem;
}

.alert-box p {
  color: #5a6c7d;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .section-title {
    font-size: 1.7rem;
  }

  .card-content {
    margin-bottom: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .contact-box {
    padding: 1.5rem;
  }

  .thank-you-content {
    padding: 2rem 1.5rem;
  }

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

html {
  scroll-behavior: smooth;
}
