.hero-page-header {
    min-height: 700px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.hph-content-wrapper {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    gap: 32px;
    /* Increased gap between text and image */
}

.hph-text-content {
    color: #fff;
    flex: 1;
    /* Take up available space */
    max-width: 600px;
    /* Prevent text from stretching too wide */
}

.hph-heading {
    color: rgb(255 255 255);
    font-size: clamp(40px, 5vw, 60px);
    /* Responsive font size */
    line-height: 1.1;
    font-weight: 700;
    /* margin-bottom: 1rem; */
}

.hph-heading>span {
    color: #fde047;
}

.hph-heading-text {
    color: rgb(229 231 235);
    font-size: 20px;
    line-height: 28px;
    /* margin-bottom: 0.5rem !important; */
}

.hph-heading-text-2 {
    color: rgb(209 213 219);
    font-size: 18px;
    line-height: 28px;
    /* margin-bottom: 2rem !important; */
}

.book-yellow-btn {
    color: #000;
    background-color: #EAB308;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    border: none;
    border-radius: 9999px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.book-yellow-btn:hover {
    color: #000;
    background-color: #CA8A04;
    transform: translateY(-2px);
}

.book-transp-btn {
    color: #fff;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 9999px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.book-transp-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hph-img-content {
    flex: 1;
    /* Take up available space */
    max-width: 510px;
    /* Maximum width of the image container */
    height: auto;
    /* Let height adjust automatically */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hph-img-content img {
    width: 100%;
    height: auto;
    max-height: 384px;
    object-fit: cover;
    /* Maintain aspect ratio */
    border-radius: 16px;
    /* Optional: rounded corners */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Optional: add depth */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hph-content-wrapper {
        flex-direction: column !important;
        text-align: center;
        gap: 48px;
    }

    .hph-text-content {
        align-items: center;
    }

    .hph-img-content {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .hero-page-header {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .hph-heading {
        font-size: 40px;
    }

    .hph-heading-text {
        font-size: 18px;
    }

    .hph-heading-text-2 {
        font-size: 16px;
    }

    .d-flex.flex-row.gap-3 {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .book-yellow-btn,
    .book-transp-btn {
        width: 100%;
    }
}