.Footer {
    background-color: #0e4754;
    color: white;
    padding: 50px 5vw 20px;
    position: relative;
    overflow: hidden;
}

.Footer__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.Footer__section {
    flex: 1;
    min-width: 200px;
}

.Footer__section h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.Footer__logo {
    width: 100px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.Footer__logo:hover {
    transform: scale(1.1);
}

.Footer__section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.Footer__section ul {
    list-style: none;
    padding: 0;
}

.Footer__section ul li {
    margin-bottom: 8px;
}

.Footer__section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.Footer__section ul a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.Footer__social {
    display: flex;
    gap: 10px;
}

.Footer__social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.Footer__social a:hover {
    background-color: #4CAF50;
    transform: translateY(-3px) scale(1.1);
}

.Footer__qrcode {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px; /* Larger size */
    height: 150px; /* Larger size */
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.Footer__qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.Footer__qrcode:hover {
    transform: scale(1.05);
    border-color: #4CAF50;
}

.Footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Footer__powered-by {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.Footer__powered-by a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.Footer__powered-by a:hover {
    color: #4CAF50;
}

.Footer__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.Footer__modal--open {
    display: flex;
}

.Footer__modal-content {
    background-color: #0e4754;
    border-radius: 10px;
    text-align: center;
    animation: scaleUp 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.Footer__modal-content img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.Footer__modal-content img:hover {
    transform: scale(1.05);
}

.Footer__modal-close {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.Footer__modal-close:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .Footer__modal-content img {
        width: 300px;
        height: 300px;
    }

    .Footer__modal-content {
        padding: 15px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

@media (max-width: 768px) {
    .Footer__content {
        flex-direction: column;
        gap: 20px;
    }

    .Footer__section {
        text-align: center;
    }

    .Footer__social {
        justify-content: center;
    }

    .Footer__qrcode {
        position: static;
        margin: 0 auto 20px;
        width: 120px;
        height: 120px;
    }

    .Footer__modal-content img {
        width: 300px; 
        height: 300px;
    }
}
