html, body {
    height: auto;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(100vh - 110px);
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.content-left {
    flex: 1;
    max-width: 40%;
    padding-right: 20px;
}

.content-right {
    flex: 1;
    max-width: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.main-title {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.main-description {
    color: white;
    font-size: 0.8rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0;
    font: 'gudea';
    
    text-align: justify;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    background: #000;
}

@media (min-width: 1201px) {
        .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: calc(100vh - 110px);
        padding: 0 180px;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px;
    }

    .content-left {
        flex: 1;
        max-width: 40%;
        padding-right: 20px;
        padding-top: calc((100vh - 110px - 400px) / 2);
    }

    .content-right {
        flex: 1;
        max-width: 60%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: calc((100vh - 110px - 400px) / 2);
    }

    .main-title {
        color: white;
        font-size: 3.1rem;
        font-weight: bold;
        margin-bottom: 20px;
        margin-top: 0;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        line-height: 1.2;
    }

    .main-description {
        color: white;
        font-size: 1.4rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        margin: 0;
        text-align: left;
    }

    .hero-video {
        width: 100%;
        max-width: 550px;
        height: 380px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        background: #000;
    }
}

@media (min-width: 1701px) {
        .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: calc(100vh - 110px);
        padding: 0 180px;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px;
    }

    .content-left {
        flex: 1;
        max-width: 40%;
        padding-right: 20px;
        padding-top: calc((100vh - 110px - 400px) / 2);
    }

    .content-right {
        flex: 1;
        max-width: 60%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: calc((100vh - 110px - 400px) / 2);
    }

    .main-title {
        color: white;
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 20px;
        margin-top: 0;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        line-height: 1.2;
    }

    .main-description {
        color: white;
        font-size: 1.4rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        margin: 0;
        text-align: left;
    }

    .hero-video {
        width: 100%;
        max-width: 850px;
        height: 500px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        background: #000;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 40px;
        gap: 50px;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .main-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        padding: 30px;
        gap: 8px;
        height: auto;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }

    .content-left,
    .content-right {
        max-width: 100%;
        width: 100%;
        flex: none;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 120px;
    }

    .main-title {
        font-size: 3.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .main-description {
        margin-top: 30px;
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .content-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .hero-video {
        width: 100%;
        max-width: 100%;
        height: 480px;
        border-radius: 12px;
    }
}

@media (max-width: 769px) {
    .hero-content {
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        height: auto;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }

    .content-left,
    .content-right {
        max-width: 100%;
        width: 100%;
        flex: none;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 85px;
    }

    .main-title {
        font-size: 2.8rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .main-description {
        font-size: 1.3rem;
        text-align: left;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .content-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .hero-video {
        width: 100%;
        max-width: 100%;
        height: 320px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px;
        gap: 8px;
        height: auto;
        min-height: auto;
        justify-content: center;
    }
    
    .content-left {
        margin-bottom: 65px;
    }
    
    .content-right {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
        line-height: 1.3;
    }
    
    .main-description {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 0;
        padding: 10px;

    }
    
    .hero-video {
        width: 100%;
        max-width: 100%;
        height: 320px;
        border-radius: 8px;
    }
}

@media (max-width: 950px) and (max-height: 450px) {
    html, body {
        height: auto !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    .hero-section {
        height: auto !important;
        min-height: 100px !important;
        padding-bottom: 40px !important;
        overflow-y: auto !important;
    }
    .hero-content {
        height: auto !important;
        min-height: 100px !important;
        overflow-y: auto !important;
    }
}
