.header {
    position: relative;
    width: 100%;
    height: 100vh;
}
.header-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 1200px;
    padding: 20px;
    border-radius: 8px;
}
.header h1 {
    font-size: 6rem;
    margin-bottom: 30px;
    color: white;
}
.header p {
    font-size: 2.2rem;
    color: white;
}
.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-content-mobile {
    display: none;
}
@media (max-width: 768px) {
    .header {
        /*height: 80vh;*/
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-header img {
        transform: scale(1.5);
    }

    .header-content {
        left: unset;
        max-width: unset;
        display: none;
    }

    .header-content-mobile {
        display: block;
    }

    .header-content-mobile-inner {
        padding: 20px;
    }

    .header h1 {
        font-size: 4rem;
    }

    .header p {
        font-size: 2rem;
    }
}