:root {
  --main-color: #199e9a;
  --secound-color: #6691cc;
  --margin-top: 3rem;
  --gray-color: #616161;
}
* {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.here-section-layout {
  margin-top: var(--margin-top);
  min-height: 60vh;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/healthcareimages/Gemini_Generated_Image_wse6hawse6hawse6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  .here-section-layout::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .container{
    .col-md-12{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      h2{
        color: var(--main-color);
        font-weight: 700;
        font-size: 3rem;
      }
      p{
        color: #fff;
        text-align: center;
        font-size: 1rem;
      }
    }
  }
}

main{
    .section-layout{
        padding: 2rem;
        margin-top: 2rem;
        .row{
            .col-md-6{
                img{
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                    border-radius: 15px;
                }   
                h2{
                    color: var(--main-color);
                    font-weight: 700;
                    font-size: 2rem;
                }
                h2::after{
                    content: "";
                    display: block;
                    width: 40px;
                    height: 3px;
                    background: var(--main-color);
                    margin-top: 5px;
                }
                p{
                    color: var(--gray-color);
                    font-size: 1rem;
                }
                ul{
                    li{
                        color: var(--gray-color);
                        font-size: 1rem;
                    }
                }
            }
        }
    }
}