/* بخش‌های محتوا */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--light-link);
}
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.about-content {
    background-color: #fff;
}

/* حالت تاریک */
.dark-mode .section-title::after {
    background: var(--dark-link);
}
.dark-mode .section-text {
    color: var(--dark-text);
}

.dark-mode .about-content {
    background-color: #052865;
}

/* موبایل */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-title::after {
        width: 60px;
    }
}