

.zfk41u0__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --zfk41u0__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .zfk41u0__loader-wrapper {
        background: var(--zfk41u0__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--zfk41u0__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--zfk41u0__font_family), sans-serif;
        color: var(--zfk41u0__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .zfk41u0__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--zfk41u0__pastel_white);
        border-top: 4px solid var(--zfk41u0__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--zfk41u0__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--zfk41u0__info);
        margin: 0;
    }

    .zfk41u0__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .zfk41u0__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--zfk41u0__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .zfk41u0__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .zfk41u0__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }
.hero-overlay-section {
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-overlay-section .content-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 0.5rem;
  }

.zfk41u0cf-form-wrapper input,
  .zfk41u0cf-form-wrapper textarea,
  .zfk41u0cf-form-wrapper select {
    font-size: 1rem;
    border: 1px solid var(--zfk41u0__main_border_color);
    background-color: var(--zfk41u0__pastel_white);
    color: var(--zfk41u0__main_dark);
  }

  .zfk41u0cf-form-wrapper input:focus,
  .zfk41u0cf-form-wrapper textarea:focus,
  .zfk41u0cf-form-wrapper select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--zfk41u0__light_color);
    border-color: var(--zfk41u0__light_color);
  }

  .zfk41u0cf-form-wrapper .zfk41u0__primary-button {
    margin-top: 1rem;
  }


.content-img35 {
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px #264b4f;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .content-img35:hover {
    box-shadow: 0 8px 16px #455442;
    transform: translateY(-2px);
  }













