.logo-container {
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.logo-area {
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 3px 10px rgba(77, 208, 225, 0.3);
    gap: 15px;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

    .logo-area img {
        height: 50px;
        width: auto;
        border-radius: 6px;
        max-width: 100%;
    }

.logo-text {
    height: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
    word-wrap: break-word;
    /*text-transform: uppercase;*/
}


footer {
    background: #f0f4ff;
    padding: 40px 20px;
    border-top: 1px solid #95e3ed;
}

.footer-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 300px;
    margin: 10px;
}

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-section ul li {
            margin-bottom: 10px;
        }

            .footer-section ul li a {
                color: #333;
                text-decoration: none;
            }

.footer-logos {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

.logo-img {
    height: 30px;
    object-fit: contain;
}

