/* =============================================================================
   ABOUT SECTION STYLES
   =============================================================================
   Styles for the About Me section
   ============================================================================= */

/* About section with 100vh */
#about {
    min-height: 100vh;
}

/* About section background - only wraps the content */
.about-section-bg {
    background-color: #edf0f1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* About section title */
.about-title {
    font-weight: 700;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* About section content */
.about-content {
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    margin-bottom: 200px;
    
}

/* Text color adjustment for About section with dark background */
.about-section-bg,
.about-section-bg .about-title,
.about-section-bg p,
.about-section-bg li {
    color:  #4a5568;
}

.about-section-bg .about-title {
    color: #4a5568;
}

.about-section-bg ul li {
    color: #4a5568;
}
