/* about.css */
body { line-height: 1.8; }

.hero {
    background: #ffffff;
    padding: 4rem 5%;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}
.hero h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.hero h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}

.container { max-width: 1000px; margin: 3rem auto; padding: 0 1.5rem; }

.about-section {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    border-left: 5px solid var(--accent);
    padding-left: 25px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.content-block h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: justify;
}

.highlight-box {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 2rem;
    border: 1px dashed var(--secondary);
    margin: 2rem 0;
}

@media (max-width: 992px) {
    .hero h2 { font-size: 1.8rem; }
    .about-section { padding: 2rem; }
    .intro-text { font-size: 1.1rem; padding-left: 15px; }
}
