﻿.step-number {
    margin-right: 20px;
    font-size: 65px;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--accent);
}

.process-title {
    font-size: 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
}

.process-body {
    margin-left: 30px;
    color: var(--secondary)
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/* Remove Bootstrap's default arrow */
.accordion-button::after {
    display: none;
}


/* When expanded, swap icon */
.accordion-button:not(.collapsed) .toggle-icon {
    content: none;
    display: inline-block;
}

.accordion-button:not(.collapsed) .step-number {
    color: var(--accent);
}


.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    color: var(--accent);
}

.accordion-button.collapsed .toggle-icon {
    content: none;
    display: inline-block;
}

.accordion-button:not(.collapsed) .toggle-icon::before {
    font-family: "Font Awesome 6 Free";
    content: "\f068"; /* fa-minus */
    font-weight: 900;
}

.accordion-button.collapsed .toggle-icon::before {
    font-family: "Font Awesome 6 Free";
    content: "\2b"; /* fa-plus */
    font-weight: 900;
}


.process-link {
    text-decoration: underline;
    color: var(--beige);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.process-link:hover {
    color: var(--beige);
}

.arrow-animate {
    transition: transform 0.3s ease;
}

.process-link:hover .arrow-animate {
    transform: translateX(8px);
}


@media (max-width: 768px) {
    .step-number {
        font-size: 40px;
    }


    .process-body {
        margin-left: 20px;
    }
}