/*
Theme Name: Hello Child
Template: hello-elementor
Version: 1.0.0
*/

.recruit-item {
    margin-bottom: 20px;
}

.recruit-title {
    background: #4db1c8;
    color: #fff;
    padding: 18px 20px;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}

.recruit-title .arrow {
    position: absolute;
    right: 20px;
    transition: 0.3s;
}

.recruit-content {
    display: none;
    background: #f4f4f4;
    padding: 20px;
}

.recruit-item.active .recruit-content {
    display: block;
}

.recruit-item.active .arrow {
    transform: rotate(180deg);
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
}

.recruit-table th {
    width: 25%;
    padding: 12px;
    background: #eee;
    text-align: left;
}

.recruit-table td {
    padding: 12px;
}