body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
}

nav {
    background-image: linear-gradient(to right, white, #C8EEFF);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
}

nav img {
    width: 220px;
}

.menu-icon i {
    font-size: 30px;
    display: flex;
    align-items: center;
    color: #007BB2;
    display: none;
}

.text-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-nav a {
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    padding: 10 0;
}

.text-nav a:hover {
    color: #00A977;
    border-bottom: 3px solid #0EA5E9;
}

footer {
    text-align: center;
    background: linear-gradient(135deg, #fbd3e9 0%, #fce3ec 25%, #e0c3fc 50%, #c2e9fb 100%);
    padding: 2rem 3rem;
}

.all-m {
    flex-direction: column;
    align-items: center;
    display: flex;  
}

.all-m h1 {
    padding-top: 2rem;
    font-size: 30px;
    padding-bottom: 20px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    background: linear-gradient(90deg, #00D193, #0097AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;


}

.all-m img {
    width: 500px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.all-m p {
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: justify;
    max-width: 500px;
    line-height: 2;
    font-size: 15px;
    color: #374151;
    font-weight: 400;
}

.sprt {
    padding-top: 30px;
    padding-bottom: 80px;
}

.sprt a {
    text-decoration: none;
    background-color: #00D193;
    color: white;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 50px;

}

.sprt a:hover {
    font-size: 20px;
    padding: 17px 22px;
    background-color: #0EA5E9;
}



/* batas footer */
.hf h3,
p {
    padding: 0;
    margin: 0;
}

.hf h3 {
    font-size: 25px;
    color: #343a40;
}

.hf p {
    padding-top: 10px;
    font-size: 18px;
    font-weight: 400;
}

.schf {
    padding-top: 25px;
}

.schf a {
    text-decoration: none;
    margin-right: 10px;
    color:#7e22ce;
    font-weight: 500;
    font-size: 16px;
}

.schf a:hover {
    border-bottom: 2px solid #343a40;
}

.ahf p {
    padding-top: 20px;
    font-size: 16px;
}



@media only screen and (max-width : 768px) {
    nav {
        flex-wrap: wrap;
    }

    .text-nav.hidden {
        display: none;
    }

    .text-nav {
        padding-top: 40px;
        flex-direction: column;
        width: 100%;
    }

    .menu-icon i {
        display: flex;
        align-items: center;
    }

    nav img {
        width: 170px;
        max-width: 100%;
    }

    .hf h3 {
        font-size: 20px;
    }

    .hf p {
        font-size: 16px;
    }

    .all-m h1 {
        font-size: 22px;
    }

    .all-m p {
        max-width: 300px;
        font-size: 14px;
    }

    .all-m img {
        width: 330px;
        max-width: 100%;
        border-radius: 20px;
    }

}


