.info-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 10%;
    color: white;
    z-index: 1;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay to ensure text readability */
    z-index: -1;
}

.info-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.info-title {
    font-size: 50px !important;
    line-height: 1.1 !important;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Druk Wide', 'Arial Black', sans-serif;
    font-weight: 700;
    width: 100%;
    text-align: left;
    display: block;
}

.info-description-col {
    flex: 1;
    min-width: 300px;
}

.info-description-col.full-width {
    flex: 0 0 100%;
}

.info-description {
    font-family: 'Rotis Sans Serif W02', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 32px !important;
    font-size: 32px !important;
    max-width: 100%;
    color: #FFFFFF;
}

.info-description-col.full-width .info-description {
    max-width: 800px;
}

.info-video-right {
    flex: 1.2;
    min-width: 300px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.info-bottom-row {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.info-subtitle {
    font-size: 85px !important;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 3px #E5261E;
    text-stroke: 3px #E5261E;
    line-height: 1.1;
    margin: 0 0 46px 0;
    font-family: 'Druk Wide', 'Arial Black', sans-serif;
    width: 100%;
    text-align: center;
    display: block;
    letter-spacing: 0.1em;
}

.info-link {
    color: #E5261E !important;
    font-size: 49px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0;
    letter-spacing: -0.02em !important;
    font-family: 'Roboto Condensed', 'Arial Narrow', 'Arial', sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-stretch: condensed !important;
    text-transform: uppercase !important;
    text-align: center;
    width: 100%;
}

.info-link:hover {
    color: white;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .info-title {
        font-size: 3rem;
    }

    .info-subtitle {
        font-size: 4rem;
        -webkit-text-stroke: 1px #D42E12;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 60px 5%;
    }

    .info-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-description-col,
    .info-video-right {
        width: 100%;
    }

    .info-title {
        font-size: 45px !important;
        line-height: 1.1 !important;
    }

    .info-description {
        font-size: 26px !important;
        line-height: 1.3 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .info-subtitle {
        font-size: 45px !important;
        -webkit-text-stroke: 1.5px #E5261E;
        text-stroke: 1.5px #E5261E;
        margin-bottom: 20px;
    }

    .info-link {
        font-size: 26px !important;
    }
}