.accordion-wrapper {
    max-width: 1100px;
    margin: 0;
}

.accordion {
    background: #f3f4f6;
    color: #1e3a5f;
    cursor: pointer;
    padding: 18px 24px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: .9em;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.accordion:hover {
    background: #e5e7eb;
}

.accordion i.fa-chevron-down {
    margin-left: auto;
    transition: transform 0.3s;
    color: #45c203;
}

.accordion.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-panel {
    display: none;
    padding: 16px 0 20px;
}

.accordion-panel.show {
    display: block;
}

.tool-card {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    color: #1e3a5f;
    text-decoration: none;
    line-height: 1.3;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
    text-align: left;
}

.tool-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tool-card img {
    width: 20px;
    height: 20px;
}

.tool-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accordion i {
    font-style: normal !important;
}