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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #0A1628;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hiker-city.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.15);
    animation: fadeInZoomOut 1.2s ease-out forwards;
    z-index: 0;
}

@keyframes fadeInZoomOut {
    from {
        opacity: 0;
        transform: scale(1.15);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 80px 136px;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #2C2C2C;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(500%) hue-rotate(110deg) brightness(95%) contrast(85%);
}

.hero-title-underline {
    width: 100%;
    height: 1px;
    background-color: #2C2C2C;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.6;
    color: #2C2C2C;
    margin: 0;
}

.hero-badge {
    position: relative;
    background: linear-gradient(to right, transparent, #000000);
    padding: 20px 40px;
    font-size: 38px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.scroll-arrow {
    width: 66px;
    height: 66px;
    background: transparent;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 7px;
}

.scroll-arrow-icon {
    width: 34px;
    height: 34px;
    animation: bounceArrow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    display: block;
    margin: auto;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
    45% {
        transform: translateY(-15px);
        animation-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53);
    }
    65% {
        transform: translateY(0);
    }
}

/* Arrow line animations */
.arrow-line-left {
    animation: closeLeft 1.5s ease-in-out infinite;
    transform-origin: 12px 16px;
}

.arrow-line-right {
    animation: closeRight 1.5s ease-in-out infinite;
    transform-origin: 12px 16px;
}

.arrow-line-center {
    animation: pulseCenter 1.5s ease-in-out infinite;
}

@keyframes closeLeft {
    0%, 50%, 100% {
        transform: rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: rotate(45deg);
        opacity: 0.8;
    }
}

@keyframes closeRight {
    0%, 50%, 100% {
        transform: rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: rotate(-45deg);
        opacity: 0.8;
    }
}

@keyframes pulseCenter {
    0%, 50%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.9;
    }
}

.scroll-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Key Values Section */
.values-section {
    background-image: url('../images/Mountain-Midnight-and-Twilight-Blue-Overlay.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 136px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 60px;
    text-align: center;
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.value-icon {
    width: 130px;
    min-height: 156px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 104px;
    font-weight: 700;
    color: #2E8B57;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
    border-bottom: 1px solid #FFFFFF;
    padding: 20px 30px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.value-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Our Strength Section */
.strength-section {
    background-image: url('../images/Mountain-Midnight-and-Twilight-Blue-Overlay.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.strength-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #2E8B57;
    padding: 30px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.stat-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
}

.stat-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
}

/* Cards Carousel */
.cards-carousel {
    width: 100%;
    margin: 0;
    padding: 80px 0;
}

.cards-stack {
    position: relative;
    width: 100%;
    height: 447px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image {
    position: absolute;
    width: 70%;
    min-height: 447px;
    height: auto;
    transition: all 0.5s ease;
    border-radius: 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background-color: #2E8B57;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-back {
    opacity: 0.6;
    height: 300px !important;
    max-height: 300px !important;
    z-index: 1;
    overflow: hidden;
}

.card-back .card-stat-category {
    font-size: 18px;
    min-height: 45px;
}

.card-back .card-stat-value {
    font-size: 35px;
    min-height: 40px;
}

.card-back .stat-icon {
    width: 30px;
    height: 30px;
}

.card-back .card-stat-description {
    font-size: 16px;
    min-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-back-left {
    left: 0;
    transform: translateX(-20%);
}

.card-back-right {
    right: 0;
    transform: translateX(20%);
}

.card-front {
    z-index: 2;
    opacity: 1;
    left: 50%;
    height: 300px;
    transform: translateX(-50%);
}

.card-front.active {
    height: 500px !important;
    min-height: 500px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.card-stats {
    display: grid;
    gap: 40px;
    width: 100%;
}

.card-stats.two-column {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 40px;
}

.card-stats.single-column {
    grid-template-columns: 1fr;
}

.card-stat {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}

.card-stat-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.card-stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    object-fit: contain;
    margin-bottom: 3px;
}

.card-stat-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.95;
    min-height: 80px;
    display: flex;
    align-items: flex-start;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.indicator-line {
    width: 21px;
    height: 4px;
    background-color: #FFFFFF;
    border-radius: 1px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.indicator-line.active {
    width: 46px;
    background-color: #2E8B57;
}

/* Our Leadership Section */
.leadership-section {
    background-color: #191970;
    background-image: url('../images/leadership-background.webp');
    background-size: cover;
    background-position: center;
    padding: 136px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.leadership-section .section-title {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.leadership-section .title-icon {
    filter: brightness(0) invert(1);
}

.founder-section {
    margin: 0 0 80px 0;
    width: 100%;
}

.leaders-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px 60px;
    margin: 0;
    width: 100%;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(33.333% - 40px);
}

.leader-icon {
    width: 40px;
    height: 40px;
    background-color: #2E8B57;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.arrow-icon {
    width: 11px;
    height: 11px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.leader-item:hover .leader-icon {
    background-color: #FFFFFF;
}

.leader-item:hover .arrow-icon {
    filter: invert(48%) sepia(79%) saturate(466%) hue-rotate(100deg) brightness(95%) contrast(86%);
}

.leader-item {
    cursor: pointer;
}

.leader-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
    position: relative;
}

.leader-name::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.leader-name::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.leader-item:hover .leader-name::before {
    transform: translateY(-100%);
}

.leader-item:hover .leader-name::after {
    transform: translateY(-100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 0 80px 4rem;
    }

    .hero-badge {
        font-size: 32px;
        padding: 18px 36px;
    }

    .scroll-arrow {
        width: 56px;
        height: 56px;
    }

    .scroll-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .scroll-text {
        font-size: 20px;
    }

    .values-section,
    .strength-section,
    .leadership-section {
        padding: 80px 4rem;
    }

    .stats-container {
        gap: 20px;
    }

    .cards-stack {
        height: 350px;
    }

    .card-image {
        width: 70%;
        height: 350px;
    }

    .card-back {
        height: 262px;
    }

    .card-front {
        height: 350px;
    }
}

@media (max-width: 968px) {
    .hero-text-container {
        transform: translateY(-150px);
    }

    .hero-title {
        font-size: 40px;
    }

    .title-icon {
        width: 40px;
        height: 40px;
    }

    .hero-content {
        padding: 0 0 0 4rem;
        position: relative;
    }

    .hero-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
    }

    .scroll-indicator {
        margin-bottom: 80px;
        margin-left: 0;
        padding: 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    }

    .hero-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        font-size: 28px;
        padding: 16px 32px;
        background: linear-gradient(to right, #FFFFFF, #000000);
        color: #FFFFFF;
        margin: 0;
        transform: none;
        animation: none;
        opacity: 1;
        text-align: center;
    }

    .scroll-arrow {
        width: 60px;
        height: 60px;
    }

    .scroll-arrow-icon {
        width: 30px;
        height: 30px;
    }

    .scroll-text {
        font-size: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .value-icon {
        width: 100px;
        font-size: 80px;
    }

    .value-content {
        padding: 15px 25px;
    }

    .value-title {
        font-size: 20px;
    }

    .value-description {
        font-size: 14px;
    }

    .cards-stack {
        min-height: 400px;
        height: auto;
    }

    .card-image {
        width: 90%;
        min-height: 400px;
        height: auto;
        padding: 40px;
    }

    .card-back {
        height: 300px !important;
        overflow: hidden;
    }

    .card-front {
        width: 95%;
        height: 400px;
    }

    .card-front.active {
        height: auto !important;
        min-height: 400px;
    }

    .card-stats.two-column {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .card-stat-category {
        font-size: 18px;
    }

    .card-stat-value {
        font-size: 35px;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
    }

    .card-stat-description {
        font-size: 16px;
    }

    .card-back .card-stat-category {
        font-size: 14px;
    }

    .card-back .card-stat-value {
        font-size: 28px;
    }

    .card-back .stat-icon {
        width: 25px;
        height: 25px;
    }

    .card-back .card-stat-description {
        font-size: 13px;
    }

    .leader-item {
        width: calc(50% - 20px);
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 0 0 2rem;
    }

    .hero-text-container {
        padding-right: 2rem;
    }

    .hero-title {
        font-size: 32px;
    }

    .title-icon {
        width: 32px;
        height: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .scroll-indicator {
        padding: 24px;
        margin-bottom: 70px;
    }

    .hero-badge {
        font-size: 22px;
        padding: 14px 28px;
    }

    .scroll-arrow {
        width: 54px;
        height: 54px;
    }

    .scroll-arrow-icon {
        width: 26px;
        height: 26px;
    }

    .scroll-text {
        font-size: 18px;
    }

    .values-section,
    .strength-section {
        padding: 60px 2rem;
    }

    .leadership-section {
        padding: 60px 2rem;
        min-height: auto;
    }

    .value-icon {
        width: 80px;
        font-size: 64px;
    }

    .value-content {
        padding: 12px 20px;
    }

    .value-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .value-description {
        font-size: 13px;
    }

    .cards-stack {
        min-height: 500px;
        height: auto;
    }

    .card-image {
        min-height: 500px;
        height: auto;
        padding: 35px;
    }

    .card-back {
        height: 375px !important;
        overflow: hidden;
    }

    .card-front {
        height: 500px;
    }

    .card-front.active {
        height: auto !important;
        min-height: 500px;
    }

    .card-stat-category {
        font-size: 16px;
    }

    .card-stat-value {
        font-size: 30px;
    }

    .stat-icon {
        width: 30px;
        height: 30px;
    }

    .card-stat-description {
        font-size: 14px;
    }

    .card-stats {
        gap: 30px;
    }

    .card-stats.two-column {
        row-gap: 25px;
    }

    .card-back .card-stat-category {
        font-size: 12px;
    }

    .card-back .card-stat-value {
        font-size: 24px;
    }

    .card-back .stat-icon {
        width: 22px;
        height: 22px;
    }

    .card-back .card-stat-description {
        font-size: 11px;
    }

    .leader-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0 0 1.5rem;
    }

    .hero-text-container {
        padding-right: 1.5rem;
    }

    .hero-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .title-icon {
        width: 24px;
        height: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .scroll-indicator {
        padding: 28px;
        gap: 12px;
        margin-bottom: 60px;
    }

    .hero-badge {
        font-size: 18px;
        padding: 12px 24px;
    }

    .scroll-arrow {
        width: 50px;
        height: 50px;
    }

    .scroll-arrow-icon {
        width: 24px;
        height: 24px;
    }

    .scroll-text {
        font-size: 16px;
    }

    .value-icon {
        width: 60px;
        font-size: 48px;
    }

    .value-content {
        padding: 10px 15px;
    }

    .value-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .value-description {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-value {
        font-size: 28px;
    }

    .cards-stack {
        min-height: 450px;
        height: auto;
    }

    .card-image {
        min-height: 450px;
        height: auto;
        padding: 25px;
    }

    .card-back {
        height: 250px !important;
        overflow: hidden;
    }

    .card-front {
        height: 450px;
    }

    .card-front.active {
        height: auto !important;
        min-height: 450px;
    }

    .card-stat-category {
        font-size: 14px;
    }

    .card-stat-value {
        font-size: 24px;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 2px;
    }

    .card-stat-description {
        font-size: 12px;
    }

    .card-stats {
        gap: 20px;
    }

    .card-stats.two-column {
        row-gap: 20px;
    }

    .card-stat {
        gap: 10px;
    }

    .card-back .card-stat-category {
        font-size: 9px;
        min-height: 30px;
    }

    .card-back .card-stat-value {
        font-size: 14px;
        min-height: 25px;
    }

    .card-back .stat-icon {
        width: 14px;
        height: 14px;
    }

    .card-back .card-stat-description {
        font-size: 8px;
        min-height: 40px;
        line-height: 1.4;
    }

    .card-back .card-stat {
        gap: 8px;
    }

    .card-back .card-stats {
        gap: 15px;
    }

    .card-back {
        padding: 20px;
    }
}

/* Leader Detail Modal */
.leader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.leader-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background-image: url('../images/mountain-emerald-green-seafoam-overlay.webp');
    background-size: cover;
    background-position: center;
    overflow-y: auto;
    z-index: 10000;
    padding: 80px 100px;
    animation: slideInFromLeft 0.5s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.close-icon {
    width: 16px;
    height: 16px;
}

.modal-body {
    color: #FFFFFF;
}

.leader-modal-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.leader-modal-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.leader-modal-bio {
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
}

.leader-modal-bio p {
    margin: 0 0 20px 0;
}

.leader-modal-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .modal-content {
        padding: 60px 40px;
    }

    .leader-modal-name {
        font-size: 36px;
    }

    .leader-modal-title {
        font-size: 18px;
    }

    .leader-modal-bio {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 40px 30px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .leader-modal-name {
        font-size: 28px;
    }

    .leader-modal-title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .leader-modal-bio {
        font-size: 14px;
    }
}

/* Strength Detail Modal */
.strength-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.strength-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.strength-modal-content {
    animation: slideInFromLeft 0.5s ease-out;
}

.strength-modal-stats {
    display: grid;
    gap: 40px;
}

/* Two-column layout for 2 stats */
.strength-modal-stats.two-column {
    grid-template-columns: 1fr 1fr;
}

/* Single column layout for 1 stat */
.strength-modal-stats.single-column {
    grid-template-columns: 1fr;
}

.strength-stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strength-stat-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strength-stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.strength-stat-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.strength-stat-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .strength-modal-stats.two-column {
        grid-template-columns: 1fr;
    }

    .strength-stat-value {
        font-size: 36px;
    }

    .strength-stat-description {
        font-size: 18px;
    }
}
