/* Pricing Page Custom Styles */
.project-one__content-inner {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.project-one__content-inner.expanded {
    max-height: 1000px;
    /* High enough value to contain all content */
    opacity: 1;
}

.project-one__btn-toggle {
    background: none;
    border: none;
    color: #856dfc;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    margin: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.project-one__btn-toggle:hover {
    color: #6a4efb;
}

.project-one__btn-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.project-one__btn-toggle.expanded i {
    transform: rotate(180deg);
}