/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
    
    .footerContainer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        
        .footerContent {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            
            .footerSection {
                h3 {
                    font-size: 1.5rem;
                    color: #4CAF50;
                    margin-bottom: 16px;
                    font-family: 'Comfortaa', cursive;
                }
                
                h4 {
                    font-size: 1.2rem;
                    color: white;
                    margin-bottom: 16px;
                    font-family: 'Comfortaa', cursive;
                }
                
                p {
                    color: #bdc3c7;
                    margin-bottom: 8px;
                    line-height: 1.6;
                    
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
                
                ul {
                    li {
                        margin-bottom: 8px;
                        
                        &:last-child {
                            margin-bottom: 0;
                        }
                        
                        a {
                            color: #bdc3c7;
                            transition: color 0.3s ease;
                            
                            &:hover {
                                color: #4CAF50;
                            }
                        }
                    }
                }
            }
        }
        
        .footerBottom {
            padding-top: 20px;
            border-top: 1px solid #34495e;
            text-align: center;
            
            p {
                color: #bdc3c7;
                font-size: 0.9rem;
            }
        }
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        
        .footerContainer {
            padding: 0 16px;
            
            .footerContent {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
        }
    }
}