.schools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.fact-card {
    border-radius: 10px;
    padding: 20px 24px;
}

.fact-card--dark {
    border-left: 4px solid #850ea5;
    background: #f3f3f8;
}

.fact-card--teal {
    border-left: 4px solid #8A4CF5;
    background: #f5f0ff;
}

.fact-card__badge {
    display: inline-block;
    background: #850ea5;
    color: #fff;
    border-radius: 6px;
    padding: 5px 14px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.fact-card__title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.fact-card__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.schools-steps {
    padding-left: 20px;
}

.schools-steps li {
    margin-bottom: 10px;
}

details {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

details summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 12px;
}

details[open] summary::after {
    content: '−';
}

details > div {
    padding: 12px 18px 16px;
    color: #555;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 600px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }
}
