.about-section-container {
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.about-wrapper-1200 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text-col {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--color-brand-blue);
    position: relative;
    height: 600px;
    color: #fff;
    overflow: hidden;
}

.about-text-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 51, 102, 0.6);
    z-index: 0;
}

.about-text-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.8) 100%);
    z-index: 1;
}

.about-scroll-container {
    padding: 50px 95px 80px 60px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.about-content-mask {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.about-content-inner {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.about-title-main {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.about-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.ver-mas-btn {
    position: absolute;
    bottom: 30px;
    left: 60px;
    z-index: 10;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    text-transform: lowercase;
    font-weight: 600;
    outline: none !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.ver-mas-btn:hover {
    text-decoration: underline;
    color: #ddd;
}

.about-img-col {
    position: relative;
}

.about-img-desktop {
    display: none;
    width: auto;
    height: 661px;
    max-width: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 10;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

@media (min-width: 992px) {
    .about-text-col {
        background-attachment: fixed;
    }
    .about-img-desktop {
        display: block;
        left: -50px;
    }
    .about-img-mobile {
        display: none;
    }
    .about-spacer-desktop {
        display: block;
    }
}

@media (max-width: 991px) {
    .about-section-container {
        margin: 0;
        padding: 0;
    }
    .about-wrapper-1200 {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }
    .about-text-col {
        height: auto !important;
        padding-bottom: 30px;
        background-attachment: scroll;
        background-size: cover;
    }
    .about-scroll-container {
        padding: 40px 30px;
        height: auto;
    }
    .about-content-mask {
        height: auto;
        overflow: visible;
    }
    .about-content-inner {
        transform: none !important;
        padding-bottom: 0;
    }
    .ver-mas-btn {
        display: none;
    }
    .about-img-mobile {
        display: block;
        width: 100%;
        height: auto;
    }
    .about-title-main {
        font-size: 32px;
    }
    .about-text, .about-subtitle {
        font-size: 17px;
    }
    .about-spacer-desktop {
        display: none !important;
    }
    .about-block-hidden {
        display: block !important;
    }
}
