/* CTA Section Styles */
.cta-section {
    padding: 150px 160px 0;
    position: relative;
    overflow: hidden;
}

.main-bg {
    min-height: 554px;
    background: #FFCC29;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 43px 65px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 75%);
}

.images-row {
    display: flex;
    gap: 10px;
    margin-bottom: 80px;
    justify-content: center;
    align-items: center;
}

.img-card {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0px 3px 8px 0px rgba(31, 31, 31, 0.2);
    transition: transform 0.2s;
}

/* Specific rotation for each image */
.img-card.img-1 {
    transform: rotate(-4deg);
}
.img-card.img-2 {
    transform: rotate(4deg);
}
.img-card.img-3 {
    transform: rotate(-4deg);
}
.img-card.img-4 {
    transform: rotate(0deg);
}
.img-card.img-5 {
    transform: rotate(4deg);
}
.img-card.img-6 {
    transform: rotate(-4deg);
}
.img-card.img-7 {
    transform: rotate(4deg);
}

.img-card:hover {
    transform: scale(1.06) rotate(0deg);
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: #1F1F1F;
    margin: 0 0 8px 0;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #484848;
    margin: 0 0 8px 0;
}

.cta-btn {
    background: #1F1F1F;
    color: #FFFFFF;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 0 64px;
        padding-top: 150px !important;
    }
    
    .main-bg {
        padding: 43px 50px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 78%);
    }
    
    .images-row {
        gap: 8px;
        margin-bottom: 72px;
    }
    
    .img-card {
        width: 100px;
        height: 125px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 32px;
        padding-top: 150px !important;
    }
    
    .main-bg {
        margin: 0px 32px !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 80%);
    }
    
    .images-row {
        gap: 6px;
        margin-bottom: 64px;
    }
    
    .img-card {
        width: 80px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 0 !important;
        margin: 0 !important;
        padding-top: 150px !important;
    }
    
    .main-bg {
        min-height: 458px;
        margin: 0px 32px !important;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%, 0 90%);
    }
    
    .images-row {
        gap: 0px;
        margin-bottom: 48px;
    }

    .img-card {
        width: 34.47px;
        height: 43.09px;
        border-radius: 2px;
    }
    
    .content {
        max-width: 279px;
        gap: 8px;
    }
    
    .section-title {
        font-size: 24px;
        margin: 0 0 8px 0;
    }
    
    .subtitle {
        margin: 0 0 8px 0;
    }
}