.vfec__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .vfec__loader-wrapper {
        background: var(--vfec__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--vfec__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .vfec__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--vfec__pastel_dark);
        border-top: 3px solid var(--vfec__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








#about {
    background-color: var(--vfec__main_white) !important;
    color: var(--vfec__main_dark) !important;
    font-family: var(--vfec__font_family);
  }

  #about .container {
    padding: 2rem;
  }

  #about .row {
    /* No layout modifications, preserve Bootstrap layout */
  }

  #about .col-lg-6 {
    padding: 1.5rem;
  }

  #about .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  #about h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--vfec__dark_color);
    margin-bottom: 1rem;
  }

  #about h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--vfec__light_accent);
    margin-top: 0.5rem;
    border-radius: 2px;
  }

  #about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--vfec__dark_color);
  }

  #about .vfec__primary-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--vfec__light_accent);
    color: var(--vfec__main_white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.2s;
  }

  #about .vfec__primary-button:hover {
    background-color: var(--vfec__dark_accent);
    transform: translateY(-2px);
  }

  #about .row.align-items-start {
    gap: 1.5rem;
  }

  #about .vfec__image {
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  /* Specific image adjustments for responsiveness */
  #about .vfec__image {
    max-height: 650px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #about {
      padding: 1.5rem;
    }

    #about h3 {
      font-size: 1.75rem;
    }

    #about .row.align-items-start {
      flex-direction: column;
    }

    #about .col-lg-6 {
      padding: 1rem 0;
    }

    #about .vfec__image {
      max-height: 400px;
    }

    #about .row.justify-content-center {
      flex-direction: column;
      align-items: center;
    }
  }
#hero {
    background-color: var(--vfec__main_dark) !important;
    color: var(--vfec__main_white) !important;
    font-family: inherit;
  }
  #hero .container {
    max-width: 100%;
  }
  #hero .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  #hero .py-4 .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  #hero .py-4 .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  #hero .rounded-2 {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: rgba(255, 255, 255, 0.05);
  }
  #hero .vfec__bg-abstract {
    background: linear-gradient(135deg, #8fcf8f, #4a7c4a);
    border-radius: 1rem;
    padding: 2rem 1rem;
    backdrop-filter: blur(4px);
  }
  #hero .bg-secondary {
    background-color: var(--vfec__pastel_dark) !important;
    opacity: 0.9;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  #hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  #hero p:first-child {
    font-weight: 700;
    font-family: var(--vfec__font_family);
  }
  #hero h1 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--vfec__font_family);
    font-style: italic;
    color: var(--vfec__light_accent);
    margin-bottom: 1.5rem;
  }
  #hero p:nth-of-type(2) {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  #hero .vfec__short-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    background-color: var(--vfec__light_accent);
    color: var(--vfec__main_white);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  #hero .vfec__short-button:hover {
    background-color: var(--vfec__dark_accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  #hero a {
    font-family: inherit;
  }
  @media (max-width: 768px) {
    #hero .vfec__bg-abstract {
      padding: 1.5rem 1rem;
    }
    #hero h1 {
      font-size: 1.5rem;
    }
    #hero p {
      font-size: 1rem;
    }
    #hero .vfec__short-button {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }
#contacts {
    font-family: var(--vfec__font_family);
    line-height: 1.6;
  }

  #contacts .container {
    padding: 2rem 1rem;
  }

  #contacts .row {
    display: flex;
    flex-direction: column;
  }

  #contacts .bg-light {
    background-color: var(--vfec__pastel_white) !important;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  #contacts .bg-light:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
  }

  #contacts h2 {
    color: var(--vfec__dark_color) !important;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }

  #contacts h3 {
    color: var(--vfec__main_color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  #contacts p {
    color: var(--vfec__dark_color);
    font-size: 1rem;
    font-weight: 300;
  }

  #contacts h3, #contacts p {
    max-width: 800px;
  }

  @media (max-width: 768px) {
    #contacts h3 {
      font-size: 1.75rem;
    }
    #contacts p {
      font-size: 0.95rem;
    }
  }

  #contacts .bg-light::before {
    content: "";
    display: block;
    height: 4px;
    width: 50px;
    margin-bottom: 1rem;
    background-color: var(--vfec__light_accent);
    border-radius: 2px;
  }

  #contacts h2 {
    color: var(--vfec__dark_color);
  }

  #contacts h2, #contacts h3 {
    font-family: inherit;
  }

  #contacts h3 {
    border-left: 4px solid var(--vfec__light_accent);
    padding-left: 0.75rem;
  }

  #contacts p {
    line-height: 1.6;
  }
#vfec__footer {
    background-color: var(--vfec__main_dark) !important;
    color: var(--vfec__light_color) !important;
    font-family: var(--vfec__font_family);
    border-top: 4px solid var(--vfec__dark_color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  }

  #vfec__footer .container {
    padding: 1.5rem 1rem;
  }

  #vfec__footer a {
    color: var(--vfec__light_color);
    transition: color 0.3s, transform 0.3s;
  }

  #vfec__footer a:hover {
    color: var(--vfec__main_color);
    transform: translateY(-2px);
  }

  #vfec__footer h2 {
    color: var(--vfec__main_color);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

  #vfec__footer hr {
    border-color: var(--vfec__pastel_white);
    opacity: 0.2;
    margin: 1.5rem 0;
  }

  #vfec__footer ul {
    padding-left: 0;
    list-style: none;
  }

  #vfec__footer .nav-item {
    margin-bottom: 0.75rem;
  }

  #vfec__footer ._vfec__menu-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: transparent;
    font-weight: 500;
  }

  #vfec__footer ._vfec__menu-item:hover,
  #vfec__footer ._vfec__menu-item:focus {
    background-color: rgba(174, 168, 139, 0.1);
    color: var(--vfec__main_color);
    text-decoration: underline;
  }

  #vfec__footer p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  #vfec__footer form {
    width: 100%;
  }

  #vfec__footer .input-group {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
  }

  #vfec__footer input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background-color: var(--vfec__main_white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--vfec__main_dark);
  }

  #vfec__footer input[type="email"]::placeholder {
    color: var(--vfec__grey);
    opacity: 0.7;
  }

  #vfec__footer button[type="submit"] {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background-color: var(--vfec__light_accent);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }

  #vfec__footer button[type="submit"]:hover {
    background-color: var(--vfec__dark_accent);
    transform: translateY(-2px);
  }

  #vfec__footer button svg {
    display: block;
    margin: auto;
    fill: var(--vfec__main_white);
  }

  #vfec__footer .small {
    font-size: 0.8rem;
    color: var(--vfec__grey);
  }

  #vfec__footer .py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #vfec__footer .mb-0 {
    margin-bottom: 0;
  }

  #vfec__footer hr.mt-0 {
    margin-top: 0 !important;
  }

  @media (max-width: 768px) {
    #vfec__footer .row {
      flex-direction: column;
      gap: 1.5rem;
    }
    #vfec__footer .col-lg-4 {
      width: 100%;
    }
  }
#vfec__header {
    font-family: var(--vfec__font_family);
  }

  #vfec__header .bg-white {
    background-color: var(--vfec__main_white) !important;
  }

  #vfec__header hr {
    border: none;
    height: 2px;
    background-color: var(--vfec__info);
    margin: 0;
  }

  #vfec__header nav {
    background-color: transparent;
    padding: 0.5rem 1rem;
  }

  #vfec__header .navbar {
    padding: 0;
  }

  #vfec__header .navbar-brand {
    color: var(--vfec__dark_color) !important;
    font-weight: bold;
    font-size: 1.25rem;
  }

  #vfec__header .navbar-toggler {
    border: none;
  }



  #vfec__header .collapse {
    background-color: transparent;
  }

  #vfec__header .navbar-nav {
    align-items: center;
    justify-content: flex-end;
  }

  #vfec__header .nav-item {
    margin: 0 0.5rem;
  }

  #vfec__header ._vfec__menu-item {
    font-family: var(--vfec__font_family);
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
  }

  #vfec__header ._vfec__menu-item:hover,
  #vfec__header ._vfec__menu-item:focus {
    background-color: var(--vfec__light_accent);
    color: var(--vfec__main_white) !important;
  }

  #vfec__header .btn.btn-primary {
    background-color: var(--vfec__main_color) !important;
    border: none;
    font-family: var(--vfec__font_family);
    font-weight: 600;
    transition: background-color 0.3s;
  }

  #vfec__header .btn.btn-primary:hover {
    background-color: var(--vfec__dark_accent) !important;
  }

  @media (max-width: 768px) {
    #vfec__header .navbar-nav {
      flex-direction: column;
      align-items: stretch;
    }
    #vfec__header .nav-item {
      margin: 0.25rem 0;
    }
    #vfec__header .btn.btn-primary {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }
  }
#faq {
  font-family: var(--vfec__font_family);
  line-height: 1.6;
}

#faq h2 {
  color: var(--vfec__main_color) !important;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

#faq .container {
  padding: 1.5rem;
}

#faq .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

#faq .col-lg-10 {
  max-width: 100%;
  width: 100%;
}

#faq .card {
  background-color: transparent !important;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#faq .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

#faq .shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

#faq .bg-light {
  background-color: var(--vfec__pastel_white) !important;
}

#faq .card-body {
  background-color: var(--vfec__pastel_white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#faq .card-body:hover {
  background-color: var(--vfec__light_accent);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
}

#faq .lead {
  display: flex;
  align-items: flex-start;
  font-size: 1.125rem;
  color: var(--vfec__main_dark);
}

#faq .lead strong {
  color: var(--vfec__main_color);
  margin-right: 0.5rem;
  font-weight: 700;
}

#faq span {
  flex: 1;
  font-size: 1rem;
  color: var(--vfec__main_dark);
  margin-left: 0.5rem;
}

#faq .rounded-pill {
  border-radius: 50px !important;
}

#faq p {
  margin: 0;
}

@media (max-width: 768px) {
  #faq h2 {
    font-size: 1.75rem;
  }
  #faq .row {
    flex-direction: column;
    align-items: center;
  }
  #faq .card {
    width: 100%;
  }
}
#features {
  font-family: var(--vfec__font_family);
  background-color: transparent;
  color: var(--vfec__main_dark);
}

#features h2 {
  color: #7ba94f !important; /* Asparagus accent for headings */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-size: 1.2rem;
}

#features h3 {
  color: #7ba94f !important; /* Asparagus accent for subheadings */
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.2;
}

#features p.lead {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  color: var(--vfec__main_dark);
}

#features .row {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#features [id^="features_item-"] {
  padding: 0;
}

#features .rounded-4 {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: var(--vfec__pastel_white);
}

#features .rounded-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#features .p-4 {
  padding: 1.5rem;
}

#features p.mb-0 {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--vfec__main_dark);
}

#features .d-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.75rem;
}

#features h5 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #7ba94f !important; /* Asparagus accent for headings */
  margin-bottom: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  #features .row {
    flex-direction: column;
  }
  #features [id^="features_item-"] {
    max-width: 100%;
  }
  #features .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  #features h3 {
    font-size: 1.75rem;
  }
  #features p.lead {
    padding: 0 1rem;
  }
}
#contacts-form {
  font-family: var(--vfec__font_family);
  line-height: 1.6;
}

#contacts-form .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#contacts-form h2 {
  color: var(--vfec__main_color) !important;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

#contacts-form p {
  color: var(--vfec__pastel_dark) !important;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#contacts-form h2,
#contacts-form p {
  padding-left: 1rem;
  padding-right: 1rem;
}

#contacts-form .py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#contacts-form .vfeccf-form-wrapper {
  background-color: transparent;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#contacts-form .vfeccf-form-wrapper:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

#contacts-form .bg-light {
  background-color: var(--vfec__pastel_white) !important;
}

#contacts-form form {
  display: flex;
  flex-direction: column;
}

#contacts-form .mb-3 {
  margin-bottom: 1rem !important;
}

#contacts-form input.form-control,
#contacts-form textarea.form-control,
#contacts-form select.form-select {
  font-family: var(--vfec__font_family);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--vfec__main_border_color);
  background-color: var(--vfec__pastel_white);
  color: var(--vfec__main_dark);
  border-radius: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

#contacts-form input.form-control:focus,
#contacts-form textarea.form-control:focus,
#contacts-form select.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--vfec__light_color);
  border-color: var(--vfec__light_color);
}

#contacts-form .vfec__primary-button {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--vfec__main_white);
  background-color: var(--vfec__main_color);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.2s;
}

#contacts-form .vfec__primary-button:hover {
  background-color: var(--vfec__dark_color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--vfec__main_dark);
}

#contacts-form .form-check-input {
  margin-right: 0.75rem;
  accent-color: var(--vfec__light_color);
}

#contacts-form .form-check-label a {
  color: var(--vfec__main_color);
  text-decoration: underline;
  transition: color 0.2s;
}

#contacts-form .form-check-label a:hover {
  color: var(--vfec__dark_color);
}

#contacts-form .g-2 {
  gap: 0.75rem;
}

#contacts-form svg {
  display: block;
  fill: currentColor;
  width: 24px;
  height: 24px;
}

#contacts-form .text-secondary {
  color: var(--vfec__pastel_dark) !important;
}

#contacts-form .mb-4 {
  margin-bottom: 1.5rem !important;
}

#contacts-form .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

#contacts-form .col {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

#contacts-form .col-auto {
  flex: 0 0 auto;
}

#contacts-form .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#contacts-form h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--vfec__main_color);
}

@media (max-width: 768px) {
  #contacts-form .row {
    flex-direction: column;
  }
  #contacts-form .col {
    width: 100%;
  }
  #contacts-form .py-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #contacts-form .vfeccf-form-wrapper {
    padding: 1rem;
  }
  #contacts-form .vfec__primary-button {
    width: 100%;
    padding: 0.75rem;
  }
}

