.about-container {
    max-width: 900px; 
    margin: 80px auto; 
    padding: 20px 40px;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

.about-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.about-header h1 {
    margin: 0;
    font-size: 3.2em;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 
        -1px -1px 0 #007BFF,  
         1px -1px 0 #007BFF,
        -1px  1px 0 #007BFF,
         1px  1px 0 #007BFF;
}
.about-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-section h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: #007BFF;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-section p, .skills-list li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.skills-list {
    list-style: none;
    padding-left: 0;
}

.skills-list li strong {
    color: #EAEAEA;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}