/* ===================================
   STRENGTHS SECTION STYLES
   ===================================
   Strengths list with custom bullet points
*/

.strengths {
    background: #0a0a0a;
}

.strengths ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
    text-align: left;
}

.strengths li {
    font-size: 18px;
    color: #cccccc;
    margin: 20px 0;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    border-left: 3px solid #ffd700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.strengths li:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(10px);
}

.strengths li:before {
    content: '→';
    color: #ffd700;
    position: absolute;
    left: 20px;
    font-size: 20px;
    font-weight: bold;
}



/* Mobile Strengths Styles */
@media (max-width: 768px) {
    .strengths ul {
        padding: 0 20px;
    }
    
    .strengths li {
        font-size: 16px;
        padding: 15px 15px 15px 40px;
        margin: 15px 0;
    }
    
    .strengths li:before {
        left: 15px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .strengths li {
        font-size: 14px;
        padding: 12px 12px 12px 35px;
        margin: 12px 0;
    }
    
    .strengths li:before {
        left: 12px;
        font-size: 16px;
    }
} 