.about-section {
    background: var(--white);
    padding: 0;
    margin: 0;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
}

.about-image {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50vw;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem;
}

.about-content-inner {
    max-width: 700px;
    width: 100%;
}

.about-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--weight-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-content h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(1, 1, 1, 0.75);
    margin: 0 0 24px 0;
}

.about-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .about-content {
        padding: 5rem;
    }

    .about-content h2 {
        font-size: 2.625rem;
    }
}

@media (max-width: 998px) {
    .about-container {
        flex-direction: column;
        min-height: auto;
    }

    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: 500px;
    }

    .about-content {
        padding: 4rem 3rem;
    }

    .about-content h2 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

    .about-tagline {
        font-size: 0.8125rem;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 600px) {
    .about-image {
        height: 400px;
    }

    .about-content {
        padding: 3rem 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .about-tagline {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}