﻿h1, h2, h3 {
    text-transform: uppercase;
}

h1 {
    font-size: 40px;
    padding-bottom: 20px;
}

h3 {
    padding-top: 16px;
}

p {
    font-size: 1em;
    padding-bottom: 12px;
    line-height: 24px;
}

a {
    color: var(--orange)
}

@media only screen and (max-width: 800px) {
    .accordion {
        flex-direction: column;
    }
}

@media only screen and (min-width: 801px) {
    .accordion {
        flex-direction: row;
    }
}

.accordion {
    width: 100%;
    gap: 40px;
    display: flex;
    background-color: white;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

    .accordion-item:last-child {
        border-bottom: none;
    }

    .accordion-item input {
        display: none;
    }

    .accordion-item label {
        padding: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        border-radius: 5px 5px 0 0;
    }

        .accordion-item label:hover {
        }

    .accordion-item .content {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        background-color: white;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .accordion-item input:checked ~ .content {
        max-height: 100%; /* Adjust according to the content height */
        padding: 15px;
    }

    .accordion-item input:checked + label {
    }

    /* Optional: Set transition timing for label background change */
    .accordion-item input:checked + label {
    }

.shadowCard {
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(24,31,77,.09);
    margin-bottom: 16px;
}

input:checked + label .icon {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
}
