.symptom-section {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e1e1e1;
}

.symptom-section h2 {
    margin: 0 0 44px;
    color: #4b4b4b;
    font-size: 34px;
    font-weight: 400;
}

.symptom-section h2 strong,
.treatment-banner h2 strong,
.process-card h3 {
    color: #25a8c8;
    font-weight: 400;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

.symptom-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: #4b4b4b;
    font-size: 25px;
    font-weight: 400;
}

.symptom-card h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 34px;
    border-radius: 17px;
    background: #25a8c8;
    color: #fff;
    font-size: 15px;
}

.symptom-card p,
.process-card p {
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.85;
}

.treatment-banner {
    margin-bottom: 68px;
}

.treatment-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.process-section {
    background: #f5f5f5;
    padding: 58px 100px 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 90px;
}

.process-card h3 {
    margin: 0 0 16px;
    font-size: 30px;
}

@media (max-width: 768px) {

    .symptom-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .treatment-banner,
    .process-section {
        padding: 42px 24px;
    }
}
