.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skill-badge {
    background-color: #2196F3;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.skill-section-title {
    color: #2196F3;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.skill-section-title:first-child {
    margin-top: 0;
}