@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.customer-header-container {
    width: 100%;
    height: 424px;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #C4C4C4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    box-sizing: border-box;
}

.customer-header-container .sub-title {
    color: #FFF;
    font-family: "IBM Plex Sans Thai", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out; 
}

.customer-header-container h1 {
    color: #FFF;
    font-size: 72px;
    font-weight: 500;
    line-height: 88px;
    margin: 0;
    padding: 0;
    text-align: left;
    animation: fadeInUp 1s ease-out; 
}

@media (min-width: 768px) and (max-width: 1024px) {
    .customer-header-container {
        height: 235px !important;
        padding: 0 24px !important;

    }

    .customer-header-container h1 {
        font-size: 56px !important;
        line-height: 1.2 !important;
    }

    .customer-header-container .sub-title {
        margin-bottom: 16px !important;
    }
}

@media (max-width: 767px) {
    .customer-header-container {
        height: 190px !important;
        padding: 0 16px !important;
    }

    .customer-header-container h1 {
        font-size: 48px !important;
        line-height: 1.2 !important;
    }

    .customer-header-container .sub-title {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
}