.about-19be315e-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Left Column: Overlapping Elements styling */
.about-19be315e-image-stack {
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* Float Animations & Shifts */
@keyframes floatMain_19be315e {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes floatOverlap_19be315e {
    0% { transform: translateY(0); }
    50% { transform: translateY(8px); }
    100% { transform: translateY(0); }
}

.about-19be315e-img-main {
    width: 60%;
    z-index: 1;
    animation: floatMain_19be315e 6s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-19be315e-img-main:hover {
    transform: scale(1.03) rotate(-1deg);
    z-index: 3;
}

.about-19be315e-img-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-19be315e-overlap-container {
    width: 48%;
    position: absolute;
    right: 0;
    bottom: -15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatOverlap_19be315e 6s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-19be315e-overlap-container:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 4;
}

.about-19be315e-img-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Card / Badge Styling */
.about-19be315e-badge {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.about-19be315e-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.about-19be315e-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 12px;
    color: #777777;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-19be315e-badge-link:hover {
    color: #0D5C4D;
}

.about-19be315e-play-svg {
    transition: transform 0.3s ease;
}

.about-19be315e-badge-link:hover .about-19be315e-play-svg {
    transform: scale(1.1);
}

/* Right Column: Typography styling */
.about-19be315e-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-19be315e-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0D5C4D;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-19be315e-title {
    font-size: 38px;
    line-height: 1.25;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.about-19be315e-lead {
    font-size: 15px;
    font-style: italic;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    border-left: 2px solid #0D5C4D;
    padding-left: 15px;
}

.about-19be315e-main-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.about-19be315e-main-desc p {
    margin: 0 0 15px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-19be315e-grid {
        gap: 40px;
    }
    .about-19be315e-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-19be315e-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px 15px;
    }
    
    .about-19be315e-media-col {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-19be315e-overlap-container {
        bottom: -25px;
        gap: 10px;
    }

    .about-19be315e-badge {
        padding: 12px;
    }

    .about-19be315e-badge-title {
        font-size: 12px;
    }

    .about-19be315e-title {
        font-size: 26px;
        line-height: 1.3;
    }
}
