.hron-accordion-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hron-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.hron-item.active {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hron-header {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
}

.hron-header:hover {
    background-color: #f9f9f9;
}

.hron-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.hron-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hron-text {
    flex-grow: 1;
}

.hron-chevron {
    flex-shrink: 0;
    margin-left: 15px;
    color: #666;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    position: relative;
}

.hron-chevron svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hron-header:hover .hron-chevron {
    background-color: #e8e8e8;
    color: #333;
}

.hron-item.active .hron-chevron {
    background-color: #f0f0f0;
    color: #333;
}

.hron-item.active .hron-chevron svg {
    transform: translate(-50%, -50%) rotate(180deg);
}

.hron-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hron-subtitle {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

.c-recruit {
    color: #2b6efd;
}

.c-boarding {
    color: #f59e0b;
}

.c-staff {
    color: #ff4500;
}

.c-wellbeing {
    color: #00c08b;
}

.hron-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
    padding: 0 15px;
}

.hron-content p {
    padding-bottom: 20px;
    padding-top: 5px;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin: 0;
}

.hron-cta {
    padding: 0 15px 20px;
    display: none;
    width: 100%;
}

.hron-item.active .hron-cta {
    display: flex;
}

.hron-cta.align-left {
    justify-content: flex-start;
}

.hron-cta.align-center {
    justify-content: center;
}

.hron-cta.align-right {
    justify-content: flex-end;
}

.hron-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    min-width: 160px;
}

.hron-cta-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
    filter: brightness(1.05);
}

