/* --- About Page Styles --- */

.about-page-section {
    padding: 50px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #24292e;
    margin-bottom: 10px;
}
.about-header .lead-text {
    font-size: 1.1rem;
    color: #586069;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
body.dark-mode .about-header h1 { color: #c9d1d9; }
body.dark-mode .about-header .lead-text { color: #8b949e; }

.about-section {
    margin-bottom: 40px;
}
.about-section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0056b3; /* Accent color */
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e1e4e8;
    display: inline-block; /* So border fits content */
}
body.dark-mode .about-section-title {
    color: #58a6ff;
    border-bottom-color: #30363d;
}

.about-section p, .about-section ul {
    font-size: 1rem;
    line-height: 1.7;
    color: #424a51;
}
body.dark-mode .about-section p, body.dark-mode .about-section ul {
    color: #b1bac4;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}
.about-section ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}
.about-section ul li::before {
    content: "\F282"; /* Bootstrap Icon: dot */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 4px;
    color: #0056b3;
    font-size: 0.9rem;
}
body.dark-mode .about-section ul li::before { color: #58a6ff; }


/* Project specific styles */
.project-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e1e4e8;
}
.project-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
body.dark-mode .project-item { border-bottom-color: #30363d; }

.project-item h5 { /* Project Title */
    font-size: 1.2rem;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}
body.dark-mode .project-item h5 { color: #c9d1d9; }

/* Technical Strengths & Languages Tables */
.skills-table {
    width: 100%;
    margin-bottom: 20px;
}
.skills-table th, .skills-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e1e4e8;
    vertical-align: top;
}
.skills-table th {
    font-weight: 600;
    color: #343a40;
    white-space: nowrap;
    width: 1%; /* To make first column as narrow as possible */
}
body.dark-mode .skills-table th, body.dark-mode .skills-table td {
    border-bottom-color: #30363d;
}
body.dark-mode .skills-table th { color: #c9d1d9; }