.footer {
    margin-top: 60px;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.footerContent {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footerSection {
    display: flex;
    flex-direction: column;
}

.footerTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footerSubtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c8e6c9;
    margin-bottom: 15px;
}

.footerText {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footerLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footerLink:hover {
    color: #66bb6a;
    transform: translateX(5px);
}

.footerAttributionLink {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline;
}

.footerAttributionLink:hover {
    color: #66bb6a;
    transform: none;
}

.socialIcons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.socialIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
}

.socialIcon:hover {
    color: #66bb6a;
    background: rgba(102, 187, 106, 0.2);
    transform: translateY(-3px);
}

.socialIcon svg {
    width: 100%;
    height: 100%;
}

.footerBottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footerBottom p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
        padding: 30px 15px 20px;
        border-radius: 15px;
        background: rgba(26, 58, 46, 0.95) !important;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .footerSection {
        text-align: center;
    }
    
    .footerTitle {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #ffffff !important;
    }
    
    .footerSubtitle {
        font-size: 1rem;
        margin-bottom: 12px;
        color: #c8e6c9 !important;
    }
    
    .footerText {
        font-size: 0.9rem;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .socialIcons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .socialIcon {
        width: 36px;
        height: 36px;
    }
    
    .footerLinks {
        align-items: center;
        gap: 8px;
    }
    
    .footerLink {
        font-size: 0.9rem;
        padding: 5px 0;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .footerBottom {
        padding-top: 15px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footerBottom p {
        margin: 3px 0;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 10px 15px;
        background: rgba(26, 58, 46, 0.95) !important;
    }
    
    .footerContent {
        gap: 25px;
    }
    
    .footerTitle {
        font-size: 1.2rem;
        color: #ffffff !important;
    }
    
    .footerSubtitle {
        font-size: 0.95rem;
        color: #c8e6c9 !important;
    }
    
    .footerText {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .footerLink {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .footerBottom {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footerBottom p {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

