.heading-width-centered {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.slide-element {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
}

.slide-element.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-element.slide-out {
    opacity: 0;
    transform: translateX(100px);
}

.arrow-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.arrow-link {
    text-decoration: none;
    display: inline-block;
}

.arrow-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--uni-grey-bttn-fontColor, #666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.arrow-icon {
    font-size: 36px;
    color: var(--uni-grey-bttn-fontColor, #666);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

/* Hover animations */
.arrow-link:hover .arrow-circle {
    border-color: transparent;
    background-color: transparent;
}

.arrow-link:hover .arrow-icon {
    transform: translateX(8px);
    color: #e7be04;
    font-weight: bold;
}

/* Tooltip */
.arrow-link {
    position: relative;
}

.arrow-link::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
}

.arrow-link::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 2px;
}

.arrow-link:hover::before,
.arrow-link:hover::after {
    opacity: 1;
}