.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 20px;
    margin-bottom: 10rem;
    position: relative;
    z-index: 2;
}

.content-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    position: relative;
    height: auto;
    min-height: 180px;
}

.content-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-item:nth-child(odd) {
    justify-content: flex-end;
}

.content-item:nth-child(even) {
    justify-content: flex-start;
}

.text-box {
    width: 45%;
    background-color: rgba(19, 26, 36, 0.6);
    backdrop-filter: blur(8px);
    padding: 25px 30px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.text-box:hover {
    transform: translateY(-5px);
    border-color: var(--ms-visio-accent);
    background-color: rgba(19, 26, 36, 0.8);
}

.content-item:nth-child(even) .text-box {
    border-left: 3px solid var(--ms-visio-accent);
    border-right: none;
    text-align: left;
}

.content-item:nth-child(odd) .text-box {
    border-right: 3px solid var(--ms-visio-accent);
    border-left: none;
    text-align: left;
}

.text-box h3 {
    color: var(--ms-visio-accent);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(76, 194, 255, 0.2);
    padding-bottom: 8px;
}

.text-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 400;
}

.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.arrow {
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--text-muted);
    transition: all 0.3s ease;
}

.arrow-container:hover .arrow {
    border-top-color: var(--ms-visio-accent);
}

.arrow-container.open .arrow {
    transform: rotate(180deg);
    border-top-color: var(--ms-visio-accent);
}

.hidden-link {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    text-align: center;
}

.hidden-link.show {
    max-height: 60px;
    margin-top: 15px;
}

.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--ms-visio) 0%, var(--ms-visio-light) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--ms-visio-light) 0%, var(--ms-visio-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 194, 255, 0.3);
}