/* General Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    color: var(--light-text);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Personal Statement Section */
.personal-statement {
    padding: 80px 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 107, 53, 0.10) 0px, transparent 18%),
        radial-gradient(circle at 85% 50%, rgba(255, 159, 28, 0.08) 0px, transparent 15%),
        #0D0D0D;
}

.statement-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 50px 60px;
    border-left: 6px solid var(--accent-color);
    background: transparent;
    position: relative;
}
