@charset "UTF-8";
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #46A2DA !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(70, 162, 218, 0.1) !important;
  margin-bottom: 1.5rem;
  position: relative;
  border: none !important;
}

.section-title-new {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #043F6D;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title-secondary {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.section-title-secondary i {
  color: #46A2DA;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .section-title-secondary {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.section-title-tertiary {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.section-title-tertiary i {
  color: #46A2DA;
}
@media (max-width: 768px) {
  .section-title-tertiary {
    font-size: 1.6rem;
  }
}

.section-subtitle-tertiary {
  text-align: center;
  margin-bottom: 2rem;
}

.section-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.section-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #043F6D 0%, rgb(5.8053097345, 91.4336283186, 158.1946902655) 50%, #46A2DA 100%);
  color: #F9F9F9 !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(46, 134, 217, 0.3);
}
.section-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 134, 217, 0.3);
}
.section-button-primary:hover i {
  transform: translateX(4px);
}
.section-button-primary i {
  transition: transform 0.3s ease;
}

.section-button-outline,
a.section-button-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgb(239, 239, 239);
  color: #043F6D;
  border: 1px solid #043F6D;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(46, 134, 217, 0.3);
  text-decoration: none;
}
.section-button-outline:hover,
a.section-button-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 134, 217, 0.3);
}
.section-button-outline:hover i,
a.section-button-outline:hover i {
  transform: rotate(180deg);
}
.section-button-outline i,
a.section-button-outline i {
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .section-title-new {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .section-label {
    font-size: 0.7rem;
    padding: 0.4rem 1.2rem;
  }
  .section-title-new {
    font-size: 1.6rem;
  }
}
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form-check-group .form-check {
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}
.form-check-group .form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check-group .form-check label {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 2px solid rgb(222.1623036649, 223.167539267, 223.8376963351);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(117.832460733, 121.6335078534, 124.167539267);
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form-check-group .form-check label:hover {
  border-color: #46A2DA;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.02), rgba(70, 162, 218, 0.04));
  box-shadow: 0 2px 8px rgba(70, 162, 218, 0.12);
}
.form-check-group .form-check label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgb(195.9947643979, 197.8010471204, 199.0052356021);
  border-radius: 6px;
  margin-right: 0.875rem;
  transition: all 0.3s ease;
  background: #ffffff;
  position: relative;
}
.form-check-group .form-check label::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.form-check-group .form-check label .text-danger {
  margin-left: 0.25rem;
  font-weight: 600;
}
.form-check-group .form-check input[type=checkbox]:checked + label {
  border-color: #043F6D;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.06), rgba(70, 162, 218, 0.1));
  box-shadow: 0 4px 12px rgba(70, 162, 218, 0.18);
  color: #043F6D;
}
.form-check-group .form-check input[type=checkbox]:checked + label::before {
  border-color: #043F6D;
  background: #043F6D;
}
.form-check-group .form-check input[type=checkbox]:checked + label::after {
  content: "✓";
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  opacity: 1;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-check-group .form-check input[type=checkbox]:focus + label {
  outline: 3px solid rgba(70, 162, 218, 0.25);
  outline-offset: 2px;
}
.form-check-group .form-check input[type=checkbox]:disabled + label {
  opacity: 0.65;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: rgb(248.3298429319, 248.5340314136, 248.6701570681) !important;
  border-color: rgb(222.1623036649, 223.167539267, 223.8376963351) !important;
}
.form-check-group .form-check input[type=checkbox]:disabled + label:hover {
  border-color: rgb(222.1623036649, 223.167539267, 223.8376963351) !important;
  background: rgb(248.3298429319, 248.5340314136, 248.6701570681) !important;
  box-shadow: none !important;
  transform: none !important;
}
.form-check-group .form-check input[type=checkbox]:disabled + label::before {
  cursor: not-allowed !important;
}
.form-check-group .form-check input[type=checkbox]:disabled:checked + label {
  opacity: 0.75;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.04), rgba(70, 162, 218, 0.08)) !important;
  border-color: rgba(70, 162, 218, 0.5) !important;
  color: rgba(70, 162, 218, 0.8);
}
.form-check-group .form-check input[type=checkbox]:disabled:checked + label::before {
  border-color: rgba(70, 162, 218, 0.5) !important;
  background: rgba(70, 162, 218, 0.5) !important;
}
.form-check-group.is-invalid .form-check label {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

@media (max-width: 768px) {
  .form-check-group {
    gap: 0.65rem;
  }
  .form-check-group .form-check label {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  .form-check-group .form-check label::before {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 0.75rem;
  }
  .form-check-group .form-check label::after {
    left: 1.25rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .form-check-group {
    gap: 0.6rem;
  }
  .form-check-group .form-check label {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .form-check-group .form-check label::before {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 0.625rem;
  }
  .form-check-group .form-check label::after {
    left: 1rem;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    font-size: 12px;
  }
}
.modal-header h5.modal-title {
  background: none;
  margin: 0.5rem 0;
  padding: 0;
  color: #043F6D;
}/*# sourceMappingURL=section.css.map */