.perks-section {
    padding: 1rem 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.perks-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.perks-section .floating-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.perk-item {
    padding: 2rem;
    text-align: center;
}

.perk-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.perk-item p {
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .perks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .perk-item {
        padding: 1.5rem;
    }
    
    .perk-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .perks-section {
        padding: 3rem 0;
    }
    
    .perks-section .container {
        padding: 0 1rem;
    }
    
    .perk-item {
        padding: 1rem;
    }
} 