.hire-main {
    display: flex;
    gap: 40px;
    margin: 40px auto 0 auto;
    max-width: 1600px;
    min-height: 400px;
}

.hire-content {
    /* flex: 2; */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 32px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hire-content .hire-title {
    font-size: 2.5rem;
    color: #d38b01;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    /* border-left: 6px solid #d38b01; */
    /* padding-left: 16px; */
}

.hire-content .hire-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background-color: #c75a1b;
    background-image: url('../icon/title_bottom_line.png');
    margin: 12px auto 0;
}

.hire-section {
    margin-bottom: 28px;
}

.hire-section-title {
    font-size: 2.15rem;
    color: #d38b01;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hire-section-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #d38b01;
    border-radius: 50%;
    margin-right: 8px;
}

.hire-table-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 18px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hire-desc {
    color: #444;
    font-size: 1.89rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.hire-download {
    margin-top: 10px;
    font-size: 1.89rem;
}

.hire-download a {
    color: #d38b01;
    text-decoration: underline;
    margin-left: 8px;
}

.hire-download a:hover {
    color: #b97a00;
}

.hire-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hire-video-img {
    width: 100%;
    min-width: 320px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hire-main-content {
    display: flex;
    gap: 40px;
    flex-direction: row;
}

@media (max-width: 992px) {
    .hire-main {
        flex-direction: column;
        gap: 24px;
    }

    .hire-side {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hire-main {
        padding: 0 8px;
    }

    .hire-content {
        padding: 16px 8px;
    }

    .hire-side {
        flex-direction: column;
        gap: 16px;
    }

    .hire-video-img {
        max-width: 100%;
    }
}