﻿body > *:not(header):not(footer):not(.mobile-bottom-nav):not(.overlay):not(script) {
    flex: unset;
}

.subtitle-text {
    position: relative;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

    .subtitle-text:hover {
        background-color: rgba(0, 120, 215, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        color: #001F3D;
    }

    .subtitle-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #0078D7, #8BC540);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .subtitle-text:hover::after {
        width: 50%;
    }

/* Accordion Toggle Styles */
.accordion-section-request-collection {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}

.accordion-header-request-collection {
    border-radius: 2rem;
    cursor: pointer;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background: white;
    border-width: 1px;
    border-color: #F07134;
}

.accordion-title-request-collection {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #F07134;
}

.accordion-icon-request-collection {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #F07134;
    transition: transform 0.3s ease;
}

.accordion-content-request-collection {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 2rem;
}

    .accordion-content-request-collection.active {
        max-height: 2000px;
        padding: 0 1.25rem;
    }

.accordion-content-request-collection-inner {
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .accordion-title-request-collection {
        font-size: 1.75rem;
    }

    .accordion-icon-request-collection {
        width: 2rem;
        height: 2rem;
        font-size: 2.5rem;
    }

    .accordion-header-request-collection {
        padding: 1rem 1.5rem;
    }
}
