/* --- SKILLS SECTION --- */
.skills-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 20px;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skills-column {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.skills-column h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* --- Contact Footer --- */
.contact-footer {
    text-align: center;
    padding: 5rem 20px 4rem 20px;
    margin-top: 4rem;
    border-top: 1px solid var(--gray-light);
}

.contact-footer h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-footer p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--hover-color);
    color: white;
}

/* =========================================
   SKILLS DESKTOP STYLES
   ========================================= */
@media screen and (min-width: 900px) {
    .skills-container {
        flex-direction: row;
        gap: 2rem;
    }

    .skills-column {
        flex: 1;
    }
}