/* About Section Component */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.about .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.about .section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-english);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about .section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about .lead-paragraph {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about .callout-box {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
}

.about .callout-box h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about .callout-box p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.about .image-caption {
    text-align: center;
    color: var(--white);
    background: rgba(30, 58, 138, 0.9);
    padding: 20px;
    border-radius: 12px;
}

.about .image-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.about .image-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.about .achievement-highlights {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-gray);
}

.about .achievement-highlights h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.about .achievement-highlights ul {
    list-style: none;
}

.about .achievement-highlights li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.about .achievement-highlights li:last-child {
    border-bottom: none;
}

.about .achievement-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
