/* POS Benefits Section Styles */

.pos-benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pos-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pos-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.pos-benefits-header h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.pos-benefits-header p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    color: #64748b;
}

.pos-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pos-benefit-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.pos-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4ECDC4;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.pos-benefit-item h3 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.pos-benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .pos-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pos-benefit-item {
        padding: 30px;
    }
    
    .pos-benefits-header h2 {
        font-size: 2rem;
    }
}
