.about-section {
    background: #fafafa;
}

.about-block {
    margin-bottom: 5rem;
}

.about-block p {
    color: #6b7280;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.icon {
    background-color: #f3f4f6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #1a252c;
}

.card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}