* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo {
    text-align: center;
}

.logo-image {
    width: 220px;
    height: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-info {
    padding: 0 20px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
    display: flex;
    align-items: start;
}

.info-item::before {
    content: "▸";
    color: #ffd700;
    margin-right: 10px;
    font-weight: bold;
}

.contact-links {
    margin-top: 20px;
}

.contact-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.footer-social {
    text-align: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1877f2;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24,119,242,0.4);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(24,119,242,0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo, .footer-social {
        text-align: center;
    }

    .logo-image {
        width: 150px;
    }

    .footer-info {
        padding: 0;
    }
}