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

.contact-header-container {
    width: 100%;
    height: 424px;
    background-size: cover;
    background-position: center;
    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;
}

.contact-header-container .sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.contact-header-container h1 {
    margin: 0;
    padding: 0;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

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

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

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

    .contact-header-container .sub-title {
        margin-bottom: 8px !important;
    }
}