body{
    font-family: var(--font-system);
    overflow-x: hidden;
    background-color: var(--primary-white);
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

.about-content{
    margin-top: var(--spacing-80px);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-40px);
}

.title-section {
    text-align: center;
    width: 100%;
    padding: 0 64px;
}

.title-section h1 {
    font-family: var(--font-title-content);
    font-size: 64px;
    color: var(--gray-black);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Video Section - Larger but not too big */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 64px;
}

.video-player {
    width: 100%;
    max-width: 1752px;
    height: auto;
    aspect-ratio: 1752 / 802;
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Our Story Section - CENTERED like original */
.story-section {
    position: relative;
    width: 100%;
    height: var(--spacing-600px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-250px);
    margin-bottom: var(--spacing-200px);
}

.story-background {
    position: absolute;
    width: 90%;
    max-width: 1200px;
    height: auto;
    z-index: 1;
}

.story-title {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: var(--primary-dark);
    padding: var(--spacing-4px) var(--spacing-12px);
}

.story-title h2 {
    font-family: var(--font-label-black);
    font-size: 64px;
    font-weight: 400;
    color: var(--primary-green);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 0.96;
    white-space: nowrap;
}

.story-text {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 900px;
    padding: 0 var(--spacing-50px);
}

.story-text p {
    font-family: var(--font-body);
    font-size: 45px;
    font-weight: 700;
    color: var(--gray-black);
    text-align: justify;
    line-height: 1.3;
    margin: 0;
    font-stretch: condensed;
}

/* Info Blocks Section - 716x914 images, 60px gap, 316px right margin */
.info-blocks-section {
    width: calc(100% - 316px);
    max-width: calc(1880px - 316px);
    margin-top: 305px;
    margin-left: 316px;
    margin-right: 316px;
    margin-bottom: var(--spacing-100px);
    display: flex;
    flex-direction: column;
    gap: 387px;
    padding: 0;
}

.info-block {
    display: grid;
    grid-template-columns: 716px 1fr;
    gap: 60px;
    align-items: start; /* Align text to top of image */
    width: 100%;
}

.info-block.reverse {
    grid-template-columns: 1fr 716px;
}

.info-block.reverse .info-image {
    order: 2;
}

.info-block.reverse .info-text {
    order: 1;
    text-align: left;
}

.info-image {
    width: 716px;
    height: 914px;
    border-radius: 25px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-10px);
}

.info-text h3 {
    font-family: var(--font-norwester);
    font-size: 50px;
    font-weight: 400;
    color: var(--gray-black);
    margin: 0;
    text-transform: uppercase;
}

.info-text p {
    font-family: var(--font-satoshi);
    font-size: 35px;
    font-weight: 400;
    color: var(--gray-black);
    line-height: 1.4;
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    width: 100%;
    margin-top: var(--spacing-100px);
    margin-bottom: 0;
    padding-bottom: var(--spacing-50px);
}

.leadership-title {
    text-align: center;
    margin-bottom: var(--spacing-40px);
}

.leadership-title h2 {
    font-family: var(--font-title-content);
    font-size: 64px;
    color: var(--gray-black);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Carousel should be 2764px x 733px total */
.leadership-section .carousel-container {
    max-width: 2764px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large Desktop - 1880px specific */
@media (min-width: 1880px) {
    .video-section {
        padding: 0 64px;
    }
    
    .video-player {
        max-width: 1752px;
    }
    
    .info-blocks-section {
        width: calc(100% - 316px);
        margin-right: 316px;
    }
    
    .info-block {
        grid-template-columns: 716px 1fr;
        gap: 60px;
        align-items: start;
    }
    
    .info-block.reverse {
        grid-template-columns: 1fr 716px;
    }
    
    .info-image {
        width: 716px;
        height: 914px;
    }
    
    .info-text h3 {
        font-size: 50px;
    }
    
    .info-text p {
        font-size: 35px;
    }
}

/* Desktop - 1440-1879px */
@media (min-width: 1440px) and (max-width: 1879px) {
    .video-section {
        padding: 0 26px;
    }
    
    .video-player {
        max-width: 1388px;
    }
    
    .story-section {
        padding-left: 26px;
    }
    
    .story-title {
        left: 26px;
    }
    
    .story-text {
        left: 26px;
    }
    
    .info-blocks-section {
        margin-left: 33px;
        margin-right: 62px;
        width: auto;
    }
    
    .info-block {
        grid-template-columns: 626px 1fr;
        gap: var(--spacing-60px);
    }
    
    .info-block.reverse {
        grid-template-columns: 1fr 626px;
    }
    
    .info-image {
        width: 626px;
        height: 827px;
    }
    
    .info-text h3 {
        font-size: 32px;
    }
    
    .info-text p {
        font-size: 24px;
    }
}

/* Tablet landscape */
@media (max-width: 1439px) {
    .about-content {
        margin-top: var(--spacing-70px);
    }
    
    .title-section {
        padding: 0 20px;
    }
    
    .title-section h1 {
        font-size: 48px;
    }
    
    .video-section {
        padding: 0 20px;
    }
    
    .video-player {
        max-width: 900px;
    }

    .story-section {
        height: 500px;
        margin-top: var(--spacing-80px);
        padding-left: 20px;
        justify-content: center;
    }
    
    .story-title {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-title h2 {
        font-size: 48px;
    }
    
    .story-text {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .story-text p {
        font-size: 30px;
    }
    
    .story-text {
        max-width: 700px;
        padding: 0 var(--spacing-40px);
    }

    .info-blocks-section {
        margin-top: 200px;
        gap: 250px;
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }

    .info-block {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: var(--spacing-40px);
    }

    .info-block.reverse {
        grid-template-columns: 1fr;
    }

    .info-block.reverse .info-image {
        order: 0;
    }

    .info-block.reverse .info-text {
        order: 0;
        text-align: center;
    }

    .info-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 716 / 914;
    }

    .info-text h3 {
        font-size: 28px;
    }

    .info-text p {
        font-size: 20px;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .about-content {
        margin-top: var(--spacing-60px);
    }
    
    .title-section {
        padding: 0 15px;
    }
    
    .title-section h1 {
        font-size: 36px;
    }
    
    .video-section {
        padding: 0 15px;
    }

    .story-section {
        height: 400px;
        margin-top: var(--spacing-60px);
    }
    
    .story-title h2 {
        font-size: 36px;
    }
    
    .story-text p {
        font-size: 20px;
    }
    
    .story-text {
        max-width: 500px;
        padding: 0 var(--spacing-30px);
    }

    .info-blocks-section {
        margin-top: 150px;
        gap: 200px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .info-image {
        max-width: 350px;
    }

    .info-text h3 {
        font-size: 24px;
    }

    .info-text p {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-content {
        margin-top: var(--spacing-90px);
    }
    
    .title-section h1 {
        font-size: 28px;
    }

    .story-section {
        height: 350px;
    }

    .story-title h2 {
        font-size: 28px;
    }
    
    .story-text p {
        font-size: 16px;
    }

    .story-text {
        max-width: 90%;
        padding: 0 var(--spacing-20px);
    }

    .info-blocks-section {
        margin-top: 100px;
        gap: 150px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .info-image {
        max-width: 280px;
    }

    .info-text h3 {
        font-size: 20px;
    }

    .info-text p {
        font-size: 16px;
    }

    .leadership-title h2 {
        font-size: 28px;
    }
}