.po-a783fff6-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: #1E1A17;
    padding: 60px 40px;
    align-items: center;
    gap: 40px;
}
.po-a783fff6-image-col {
    flex: 1 1 45%;
    max-width: 50%;
}
.po-a783fff6-content-col {
    flex: 1 1 45%;
    max-width: 50%;
}
.po-a783fff6-image-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}
.po-a783fff6-wrapper:hover .po-a783fff6-image-inner {
    transform: scale(1.03);
}
.po-a783fff6-image-inner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
.po-a783fff6-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: po-fade-in-up 0.8s ease forwards;
}
.po-a783fff6-image-col {
    opacity: 0;
    animation: po-fade-in 1s ease 0.3s forwards;
}
@keyframes po-fade-in-up {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes po-fade-in {
    to { opacity: 1; }
}

.po-a783fff6-label {
    font-size: 14px;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.po-a783fff6-heading {
    font-size: 42px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 300;
}
.po-a783fff6-divider {
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
    margin-bottom: 30px;
}
.po-a783fff6-desc {
    color: #b0aba6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.po-a783fff6-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.po-a783fff6-feature-item {
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: po-fade-in 0.6s ease forwards;
}
.po-a783fff6-feature-item:nth-child(1) { animation-delay: 0.4s; }
.po-a783fff6-feature-item:nth-child(2) { animation-delay: 0.5s; }
.po-a783fff6-feature-item:nth-child(3) { animation-delay: 0.6s; }
.po-a783fff6-feature-item:nth-child(4) { animation-delay: 0.7s; }
.po-a783fff6-feature-item:nth-child(5) { animation-delay: 0.8s; }
.po-a783fff6-feature-item:nth-child(6) { animation-delay: 0.9s; }

.po-a783fff6-feature-icon {
    color: #D4AF37;
    font-size: 14px;
}
.po-a783fff6-feature-icon svg {
    width: 14px;
    height: 14px;
    fill: #D4AF37;
}

@media (max-width: 767px) {
    .po-a783fff6-wrapper {
        flex-direction: column-reverse;
        padding: 40px 20px;
        gap: 30px;
    }
    .po-a783fff6-image-col, .po-a783fff6-content-col {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
    .po-a783fff6-heading {
        font-size: 32px;
    }
    .po-a783fff6-features {
        grid-template-columns: 1fr;
    }
    .po-a783fff6-wrapper:hover .po-a783fff6-image-inner {
        transform: none;
    }
}