.footer {
            background: linear-gradient(to right, #2c3e50, #1a2530);
            color: #ecf0f1;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-logo img {
            width: 180px;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;

        }
        
        .footer-logo p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #bdc3c7;
            max-width: 300px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #3498db;
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #3498db;
            transform: translateX(5px);
        }
        
        .footer-links i {
            margin-right: 10px;
            color: #3498db;
            width: 20px;
            text-align: center;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            display: flex;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            color: #3498db;
            font-size: 1.2rem;
            margin-right: 15px;
            min-width: 25px;
        }
        
        .contact-info span {
            color: #bdc3c7;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .iban-list {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
        }
        
        .iban-list p {
            font-family: 'Courier New', monospace;
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding: 8px;
            background: rgba(0,0,0,0.2);
            border-radius: 4px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #95a5a6;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: #3498db;
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .main-content h1 {
                font-size: 2rem;
            }
            
            .main-content p {
                font-size: 1rem;
            }
        }