/* ========== ABOUT PAGE ========== */
.about-page {
    width: 85%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Left Photo */
.about-photo {
    flex: 0 0 47%;
    position: relative;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 30px 0;
}

.about-photo-wrapper {
    position: relative;
    width: 80%;
    height: 82%;
    overflow: hidden;
}

.about-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    z-index: 2;
}

/* Right Content */
.about-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    background: var(--color-white);
    padding: 30px 50px;
}

.about-text-wrapper {
    max-width: 520px;
}

/* Text Block */
.about-block {
    margin-bottom: 20px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.about-block p {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

/* Divider */
.about-divider {
    width: 60px;
    height: 1px;
    background: var(--color-light-gray);
    margin: 16px 0;
}


/* Downloads Section */
.about-downloads {
    display: flex;
    gap: 30px;
}

.about-dl-group {
    flex: 1;
}

.about-dl-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-engineering);
}

.about-dl-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 5px;
    border-radius: 8px;
    background: #f5f7fa;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
}

.about-dl-link:last-child {
    margin-bottom: 0;
}

.about-dl-link:hover {
    background: var(--color-engineering);
    color: #fff;
}

.about-dl-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-content {
        padding: 50px 40px;
    }

    .about-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        width: 100%;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .about-photo {
        flex: none;
        height: 40vh;
    }

    .about-content {
        flex: none;
        padding: 40px 30px 80px;
    }

    .about-downloads {
        flex-direction: column;
        gap: 30px;
    }
}
