footer {
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    padding: 50px 80px 20px;
    color: white;
    box-sizing: border-box;
}

.footer-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-left {
    align-items: flex-start;
    text-align: left;
}

.footer-right {
    align-items: flex-end;
    text-align: right;
}

.footer-left h3, .footer-right h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
}

.footer-left p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 80%; 
}

.footer-mid {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mid img {
    width: 140px;
    height: auto;
    border-radius: 50%; 
    border: 2px solid #5dade2; 
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-mid img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(93, 173, 226, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #5dade2; 
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #333;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    footer {
        padding: 40px 40px 20px; 
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 20px 15px;
    }

    .footer-items {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .footer-left, 
    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-left p {
        max-width: 100%; 
    }

    .footer-mid img {
        width: 110px;
    }
}