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

html {
  scroll-behavior: smooth;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #2c2c2c;
}

.navbar-brand:hover {
  color: #3a7bd5;
}

.nav-link {
  color: #5a5a5a;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3a7bd5;
}

.btn-cta {
  background: linear-gradient(135deg, #3a7bd5 0%, #5a9fd8 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #2c63b0 0%, #4a8fc8 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 123, 213, 0.3);
}

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

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

.hero-text {
  font-size: 1.15rem;
  color: #5a5a5a;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #3a7bd5 0%, #5a9fd8 100%);
  color: #ffffff;
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #2c63b0 0%, #4a8fc8 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 123, 213, 0.35);
  text-decoration: none;
}

.rounded-image {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.bg-light {
  background-color: #f5f7fa;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1.05rem;
  color: #5a5a5a;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-info {
  background-color: #f5f7fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

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

.contact-form {
  background-color: #f5f7fa;
  padding: 2.5rem;
  border-radius: 10px;
}

.form-control {
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 0 0.2rem rgba(58, 123, 213, 0.15);
}

.info-box {
  background-color: #f5f7fa;
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 4px solid #3a7bd5;
}

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer {
  background-color: #2c2c2c;
  color: #d4d4d4;
  padding: 2.5rem 0;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: #d4d4d4;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

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

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

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

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

.btn-primary-small {
  background: linear-gradient(135deg, #3a7bd5 0%, #5a9fd8 100%);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-small:hover {
  background: linear-gradient(135deg, #2c63b0 0%, #4a8fc8 100%);
  transform: translateY(-1px);
}

.btn-secondary-small {
  background-color: #5a5a5a;
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-small:hover {
  background-color: #4a4a4a;
  transform: translateY(-1px);
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
}

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

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

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

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

.cookie-option span {
  font-size: 1rem;
  color: #5a5a5a;
}

.cookie-modal-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.policy-page {
  padding: 120px 0 60px;
}

.policy-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.policy-page h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-page p {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-page .text-muted {
  color: #888888;
}

.thank-you-page {
  padding: 120px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.thank-you-content .lead {
  font-size: 1.25rem;
  color: #3a7bd5;
  margin-bottom: 1rem;
  font-weight: 600;
}

.thank-you-content p {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 60px;
  }

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

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

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

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

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