section {
    margin: 120px 5% !important;
    margin-bottom: 30px !important;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #003543;
}

.indications__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 2%;
}

.indications__item {
   padding: 24px; 
   border: 1px solid #ECF3F5;
   border-radius: 10px;
}

.indications__title {
    font-size: 18px;
    font-weight: 500;
    color: #0196BB;
    margin-bottom: 6px;
}

.indications__desc {
    font-size: 16px;
    color: #577B84;
}


.blue-btn  {
    display: block;
    background: #0196BB;
    border: 1px solid #0196BB;
    border-radius: 4px;
    padding: 8px 44px;
    width: fit-content;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
}

.blue-btn:hover {
    background: white;
    color: #0196BB;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    .indications__cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .indications__desc {
        font-size: 14px;
    }

    .blue-btn {
        width: 100%;
    }

    .section-title {
        font-size: 23px;
    }
}

@media screen and (max-width: 768px) {
    section {
        margin: 80px 5% !important;
    }
}
