
.cu-page-wrapper {
    width: 100%;
    background: #ffffff;
}


.cu-hero {
    margin-top: 79px !important;
    position: relative;
    width: 100%;
    background-color: #1a2847;
    background-image: url('https://joeblackentertainment.com/wp-content/uploads/2026/04/Banner-contact-scaled.png');
    background-size: cover;
    background-position: center 15%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cu-hero {
        aspect-ratio: 26 / 9;
        min-height: auto;
    }
}

.cu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 15, 40, 0.92) 0%,
        rgba(10, 15, 40, 0.6) 50%,
        rgba(10, 15, 40, 0) 100%
    );
    z-index: 1;
}

.cu-hero__bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 48px 60px 120px 80px;
    gap: 40px;
}

/* Left content */
.cu-hero__content {
    max-width: 560px;
}

.cu-hero__title {
    margin: 0 0 16px;
    line-height: 1.05;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 12px;
}

.cu-title-1 {
    font-size: 35px;
    font-family: 'DelaGothicOne', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.cu-title-2 {
    font-size: 35px;
    font-family: 'DelaGothicOne', sans-serif;
    color: #4A9FD8;
    font-weight: 700;
}

.cu-hero__text {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.75;
    color: #ffffff;
    text-align: justify;
    max-width: 608px;
    font-family: 'Poppins';
}

.cu-hero__text--bold {
    margin-bottom: 0;
}

.cu-hero__text--bold strong {
    font-weight: 700;
    color: #ffffff;
}

/* Right: social icons */
.cu-hero__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cu-social-icon {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.cu-social-icon:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
    color: #ffffff;
}


.cu-content {
    width: 100%;
    padding: 70px 80px 80px;
}

.cu-content p {
    line-height: 1.8;
    margin-bottom: 8px;
    color: #333333;
    font-size: 15px;
}

.cu-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

.cu-content a {
    color: #333333;
    text-decoration: none;
}

.cu-content a:hover {
    color: #4A9FD8;
}


@media (max-width: 768px) {
    .cu-hero {
        min-height: 450px !important;
        background-position: 75% center !important;
        aspect-ratio: auto;
		margin-top: 28px !important;
    }

    .cu-hero__overlay {
        background: rgba(10, 15, 40, 0.7);
    }

    .cu-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 24px;
    }

    .cu-title-1,
    .cu-title-2 {
        font-size: 40px;
    }

    .cu-hero__socials {
        flex-wrap: wrap;
    }

    .cu-content {
        padding: 40px 20px 60px;
    }
}

@media (max-width: 480px) {
    .cu-hero__bottom {
        padding: 24px 16px;
    }

    .cu-title-1,
    .cu-title-2 {
        font-size: 30px;
    }

    .cu-content {
        padding: 32px 16px 48px;
    }
}