/* === ABOUT PAGE SPECIFIC STYLES === */

/* === PROFILE SECTION === */
.profile-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.profile-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.profile-image {
    flex: 1;
    max-width: 400px;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-text {
    flex: 2;
}

/* === SKILLS SECTION === */
.skills-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.skill-category {
    background-color: #222;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
    color: #4a90e2;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.skill-category ul {
    padding-left: 20px;
}

.skill-category li {
    margin-bottom: 8px;
}

/* === RESPONSIVE DESIGN - ABOUT === */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
    }

    .profile-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}