* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Open Sans Light', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(135deg, #006c8dc0 0%, #0058af7a 100%), url('../assets/About-Us.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Core Values Section */
.values-section {
    padding: 100px 60px;
    background: var(--bg-light);
}

.values-container {
    max-width: 1440px;
    margin: 0 auto;
}

.values-intro {
    text-align: center;
    margin-bottom: 80px;
}

.values-intro h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.value-card {
    background: var(--white);
    padding: 48px 40px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--obx-mid-blue);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--obx-mid-blue);
    margin-bottom: 24px;
}

.value-card ul {
    list-style: none;
}

.value-card li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

/* Mission Section */
.mission-section {
    padding: 100px 60px;
    background: var(--white);
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 48px;
    font-weight: 400;
}

.origin-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 300;
}

/* Awards Section */
.awards-section {
    padding: 100px 60px;
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
}

.awards-container {
    max-width: 1440px;
    margin: 0 auto;
}

.section-title-main {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.5px;
}



/* Map Section */
.map-section {
    padding: 100px 60px;
    background: var(--white);
}

.map-container {
    max-width: 1440px;
    margin: 0 auto;
}

.map-image-container {
    text-align: center;
    margin-bottom: 60px;
}

.map-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #e0e0e0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

/* Single remaining location card (OCONUS only) — center it and let it
   stretch wide (close to the map image's width) instead of the narrow
   box it collapsed to when it had only one column of grid content. */
.locations-grid-single {
    grid-template-columns: minmax(0, 1050px);
    justify-content: center;
}

.locations-grid-single .location-group {
    padding: 48px 64px;
}

.locations-grid-single .location-list {
    columns: 2;
    column-gap: 48px;
}

.locations-grid-single .location-list li {
    font-size: 18px;
    padding: 10px 0;
}

.location-group {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.location-group h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--obx-mid-blue);
    margin-bottom: 24px;
}

.location-list {
    columns: 2;
    column-gap: 24px;
    list-style: none;
}

.location-list li {
    color: var(--text-dark);
    font-size: 16px;
    padding: 6px 0;
    break-inside: avoid;
}

/* Video Section */
.video-section {
    padding: 100px 60px;
    background: var(--bg-light);
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 14px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--obx-light-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}