.container-73b86b97 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 20px 0;
}

.left-panel-73b86b97 {
    flex: 1 1 450px;
    max-width: 550px;
}

.subtitle-73b86b97 {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #0F2C59;
    margin-bottom: 15px;
}

.title-73b86b97 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #0F2C59;
    margin: 0 0 25px 0;
    letter-spacing: -0.02em;
}

.lead-text-73b86b97 {
    font-size: 18px;
    line-height: 1.5;
    color: #7A8B9E;
    margin-bottom: 25px;
}

.body-text-73b86b97 {
    font-size: 15px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 30px;
}

.grid-73b86b97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.card-73b86b97 {
    border: 1px solid rgba(15, 44, 89, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.card-73b86b97:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 44, 89, 0.05);
}

.card-title-73b86b97 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #0F2C59;
}

.card-desc-73b86b97 {
    font-size: 13px;
    color: #7A8B9E;
    margin: 0;
}

.btn-73b86b97 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(15, 44, 89, 0.15);
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 700;
    color: #0F2C59;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-73b86b97:hover {
    background-color: #0F2C59;
    color: #ffffff;
    border-color: #0F2C59;
}

.arrow-73b86b97 {
    transition: transform 0.2s ease;
}

.btn-73b86b97:hover .arrow-73b86b97 {
    transform: translateX(4px);
}

/* Right Collage */
.right-panel-73b86b97 {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-wrapper-73b86b97 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    aspect-ratio: 4 / 3;
}

.img-wrapper-73b86b97.wide-73b86b97 {
    aspect-ratio: 16 / 9;
}

.img-wrapper-73b86b97 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-wrapper-73b86b97:hover img {
    transform: scale(1.05);
}

.img-label-73b86b97 {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bottom-images-row-73b86b97 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Animations */
.reveal-73b86b97 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-73b86b97.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-73b86b97 {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-73b86b97.active .stagger-73b86b97 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--stagger-delay, 0s);
}

@media (max-width: 768px) {
    .grid-73b86b97 {
        grid-template-columns: 1fr;
    }
    .bottom-images-row-73b86b97 {
        grid-template-columns: 1fr;
    }
}
