.apply {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.job-list {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-list h2 {
    text-align: center;
    color: #2a3f84;
}

.job-item {
    background-color: #f5f7ff;
    margin: 10px 0;
    border-radius: 6px;
    overflow: hidden; /* Ensure content stays within the box when animating */
    transition: background-color 0.3s;
}

.job-item:hover {
    background-color: #e9ecff;
}

.job-item > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.detail-btn {
    background-color: transparent;
    color: #ff9900;
    border: 2px solid #ff9900;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100px; /* Make the button full width */
    justify-content: space-between;
    transition: background-color 0.3s, color 0.3s;
}

.detail-btn span {
    font-size: 18px;
    transition: color 0.3s;
}

.detail-btn:hover {
    background-color: #ff9900;
    color: #ffffff;
}

.job-item.active .detail-btn {
    background-color: #ff9900;
    color: #ffffff;
    border: 2px solid #ff9900;
}

.job-item.active .detail-btn span {
    color: #ffffff;
}

.job-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #e9ecff;
    padding: 0 10px;
    border-radius: 5px;
}

.job-item.active .job-detail {
    padding: 10px; /* Add padding when active */
    max-height: 100px; /* Or enough height to show the full content */
}
 
/* Môi trường làm việc */
.space {
    font-family: roboto;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.space .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    flex-wrap: wrap;
}

.space .image-section {
    position: relative;
    width: 50%;
}

.space .image-section img {
    width: 100%;
    border-radius: 8px;
}

.space .overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.space .text-section {
    width: 50%;
    padding: 22px 30px;
    border-radius: 8px;
    margin-right: -100px;
}

.space .text-section h2 {
    color: #0056b3;
    font-size: 30px;
    font-weight: 600;
}

.space .text-section h3 {
    color: #0056b3;
    font-size: 20px;
    margin-top: 20px;
}

.space .text-section ul {
    list-style: none;
    padding: 0;
    color: #333;
}

.space .text-section ul li {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.fa-check {
    color: orange;
    font-size: 16px;
    font-weight: 1000;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .space .container {
        flex-direction: column;
        align-items: center;
    }

    .space .image-section
    {
        width: 100%;
        margin-bottom: 20px;
    }
    .space .text-section {
        width: 100%;
        margin-right: 15px;
    }

    .space.overlay-text {
        font-size: 18px;
    }

    .space .text-section h2 {
        font-size: 20px;
    }

    .space .text-section h3 {
        font-size: 18px;
    }

    .space .text-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .space .overlay-text {
        font-size: 16px;
    }

    .space .text-section h2 {
        font-size: 18px;
    }

    .space .text-section h3 {
        font-size: 16px;
    }

    .space .text-section ul li {
        font-size: 13px;
    }
}
.benefit{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.benefit .content-be {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.benefit .text-section {
    width: 55%;
    padding-right: 20px;
    box-sizing: border-box;
}

.benefit .text-section h2 {
    color: #0056b3;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit .text-section ul {
    list-style: none;
    padding: 0;
    color: #333;
}

.benefit .text-section ul li {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}


.benefit .image-section {
    width: 40%;
    box-sizing: border-box;
}

.benefit .image-section img {
    width: 100%;
    border-radius: 8px;
}

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
    .benefit .content-be {
        flex-direction: column;
    }

    .benefit .text-section, 
    .benefit .image-section {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .benefit .text-section ul li {
        font-size: 14px;
    }

    .benefit .text-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .benefit .text-section ul li {
        font-size: 13px;
    }

    .benefit .text-section h2 {
        font-size: 20px;
    }
}

