.arc-thriving-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.arc-stage-card {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.arc-stage-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.arc-stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.arc-stage-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arc-stage-text {
    flex-grow: 1;
}
.arc-stage-title {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.arc-stage-subtitle {
    margin: 0;
    font-style: italic;
    font-weight: 600;
    font-size: 1rem;
}
.arc-stage-desc p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Animation classes */
.arc-animate-hidden {
    opacity: 0;
    transform: translateY(40px);
}
.arc-animate-visible {
    opacity: 1;
    transform: translateY(0);
}