/* About Section styles */
.about-section {
    padding: 20px; 
    background-color: #f9f9f9; 
}

.about-section h2 {
    font-size: 1.5rem; 
    margin-bottom: 20px; 
    text-align: center;
}

.about-section p {
    font-size: 1rem; 
    color: #333; 
    line-height: 1.6; 
    margin: 0 auto; 
    max-width: 800px; 
    margin-bottom: 20px; 
    text-align: left;
}

.social-icons {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    margin-top: 20px; 
}

/* Responsive styles */
@media (max-width: 600px) {
    .about-section h2 {
        font-size: 1.5rem; 
    }

    .about-section p {
        font-size: 0.9rem; 
    }
}