@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}
.main {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.heading-frame {
    width: 100%;
    height: 300px;
    background: hsla(236, 100%, 8%, 1);

background: linear-gradient(-90deg, hsla(236, 100%, 8%, 1) 0%, hsla(211, 100%, 28%, 1) 100%);

background: -moz-linear-gradient(-90deg, hsla(236, 100%, 8%, 1) 0%, hsla(211, 100%, 28%, 1) 100%);

background: -webkit-linear-gradient(-90deg, hsla(236, 100%, 8%, 1) 0%, hsla(211, 100%, 28%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#000328", endColorstr="#00458E", GradientType=1 );
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.heading-frame h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.text-body {
    width: 60%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px;
}
.text-body h3 {
    color: #000000;
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: 700;
    text-align: left;
}
.text-body p {
    color: #000000;
    font-size: 18px;
    padding-bottom: 20px;
    font-weight: 400;
    text-align: left;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .text-body {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        padding: 20px;
    }
    .text-body h3 {
        color: #000000;
        font-size: 20px;
        padding-bottom: 20px;
        font-weight: 700;
        text-align: left;
    }
    .text-body p {
        color: #000000;
        font-size: 14px;
        padding-bottom: 20px;
        font-weight: 400;
        text-align: left;
    }
}