/* Footer Section Styles */
.footer {
    width: 100%;
    background-color:  #A9A9A9;
    color: #213236;
    padding: 0.625rem 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Perhitungan konsisten */
    font-size: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 0.625rem;
}

.footer-logo p {
    font-size: 0.938rem;
    font-weight: bold;
    margin: 0;
}

.footer-contact h3 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
}

@media (max-width: 425px) {
    .footer-contact h3 {
        font-size: 1.5rem;
    }
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    margin: 0.625rem 0;
}

.footer-contact ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: left;
}

.footer-contact ul li a i {
    margin-right: 0.625rem;
    font-size: 1.125rem;
}

.footer-contact ul li a:hover {
    color:  #FF3B3F;
}

/* Responsive Design footer */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0 1.25rem;
    }

    .footer-logo, .footer-contact {
        flex: 1;
    }

    .footer-contact h3 {
        text-align: left;
    }

    .footer-contact ul li {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 869px) {
    .footer-contact {
        justify-content: center; /* Teks akan berada di tengah */
        font-size: 0.875rem; /* Opsional, untuk menyesuaikan ukuran font */
    }
}

.copyright-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100%;
}

.copyright-text-container p {
    margin: 2em;
    text-align: center;
    font-size: 0.875rem;
}