.header-frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 27px;
    position: relative;
}

.header-frame .info-text-wrapper {
    position: relative;
    align-self: stretch;
    height: 25px;
    margin-top: -1.00px;
    font-family: "Gilroy-Bold", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}


.static-paragraph {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    
    color: #ffffff;
    height: 250px;
    padding-left: 100px;
}
.scrollable-paragraph {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    height: 200px;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #005EBA;
}

.scrollable-paragraph .info {
    font-family: "Gilroy-Regular", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 15px;
    letter-spacing: 2.20px;
    line-height: normal;
    display: none;
    flex: 1;
    padding-left: 20px;
}

.scrollable-paragraph .info h3 {
    font-size: 20px;
    font-weight: 600;
}

.scrollable-paragraph .info p {
    font-size: 18px;
}

.scrollable-paragraph .info.active {
    display: block;
}

.scroll-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
}

.scroll-btn.left {
    right: 40px;
    background-color: #0033A2;
    color: #ffffff;
}

.scroll-btn.right {
    right: 0px;
    background-color: #0033A2;
    color: #ffffff;
}

.bg-stroke {
    background: url("../../img/services/stroke.png") no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    z-index: 1;  /* Ensure it is behind other elements */
}
.bg-stroke-rev {
    background: url("../../img/services/stroke-rev.png") no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    z-index: 1;  /* Ensure it is behind other elements */
}

.text11-section {
   
    background: url("../../img/services/colclusion-bg.png") no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 190px;
    z-index: -1;
   
}

@media (max-width: 768px) {
    .header-frame {
        gap: 15px;
    }

    .header-frame .info-text-wrapper {
        font-size: 1.5rem;
    }

    .static-paragraph {
        flex-direction: column;
        padding: 0px;
    }

    .scrollable-paragraph {
        align-items: center;
    }

    .scrollable-paragraph .info h3 {
        font-size: 1.1rem;
    }

    .scrollable-paragraph .info p {
        font-size: 0.9rem;
    }

    .scroll-btn {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-frame .info-text-wrapper {
        font-size: 1.2rem;
    }

    .scrollable-paragraph {
        padding: 5px;
    }

    .scrollable-paragraph .info {
        padding: 5px;
    }

    .scrollable-paragraph .info h3 {
        font-size: 1rem;
    }

    .scrollable-paragraph .info p {
        font-size: 0.8rem;
    }

    .static-paragraph img {
        width: 60px;
    }

    .scroll-btn {
        font-size: 1rem;
    }
}
