.accordion {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    background-color: #f1f1f1;
    border: none;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion i {
    font-size: 18px;
    font-weight: bold;
    /* transition: transform 0.4s ease; */
    transition: transform 0.3s ease-in-out;
}

.panel {
    padding: 0 10px;
    background-color: white;
    border: 1px solid #ccc;
    display: block;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;

}

.accordion.active i {
    transform: rotate(0deg);
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background-color: #ffffff;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid var(--primaryColor);
}

.card:first-child {
    margin-top: 15px;
}

.card:last-child {
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.card p {
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 15px;
    color: #000;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px;
}

.card-number {
    font-weight: bold;
    white-space: nowrap;
}

.card-content {
    text-align: justify;
}

.card a {
    color: #1a73e8;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}