body {
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #0a369d;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

header img {
    width: 100%;
    height: auto;
    display: block;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #fafafa;
    gap: 20px;
}

.footer-section {
    padding: 20px;
}

.footer-left {
    flex: 0 0 30%;
    max-width: 30%;
    justify-content: flex-start;
}


.footer-left img {
    width: 80%;
    height: auto;
    display: block;
}

@media (max-width: 800px) {
    .footer-left img {
        width: auto;
        min-width: 120px;
        max-width: 200px;
        margin: 0 auto;
    }
}

.footer-center {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Sejajarkan konten secara vertikal */
    gap: 12px;
}


.footer-center .footer-heading {
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 800px) {    
    .footer-center .footer-heading {
        font-size: 20px;
    }
}

.instagram-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.instagram-container img {
    width: 70px;
    height: 70px;
    margin-top: 4px;
    justify-content: center;
}

.instagram-links {
    display: flex;
    flex-direction: column;
}

.instagram-links a {
    font-size: 28px;
    color: #0a369d;
    text-decoration: none;
    margin-bottom: 4px;
}

@media (max-width: 800px) {
    .instagram-container img {
        width: 38px;
        height: 38px;
    }
    .instagram-links a {
        font-size: 16px;
    }
}
.instagram-links a:hover {
    text-decoration: underline;
}

.footer-right {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.footer-right img {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-center .instagram-container {
        justify-content: left;
    }
}