/* Info Section - Image & Decorations */
.info-image-wrapper {
    position: relative;
    padding: 2rem;
}

.info-image-wrapper img {
    width: 100%;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.info-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 120px;
    background-color: #4c1d95;
    border-radius: 20px;
    z-index: 3;
}

.info-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 150px;
    height: 150px;
    border: 2px solid #4a1d95;
    border-radius: 15px;
    z-index: 1;
    opacity: 0.5;
    transform: rotate(-10deg);
}

.circle-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

.dots-decoration {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100px;
    background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 3;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .info-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}