        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .footer--container {
            background-color: #171717;
            color: #e2e8f0;
            padding: 40px 20px 20px;
            text-align: center;
            width: 100%;
        }
        
        .footer--content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer--logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: 2px;
            color: #ffffff;
        }
        
        .footer--tagline {
            margin-bottom: 30px;
            font-size: 16px;
            opacity: 0.8;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .footer--social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .footer--social-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #1e293b;
            color: #e2e8f0;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }
        
        .footer--social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .footer--social-btn.facebook:hover {
            background-color: #1877F2;
        }
        
        .footer--social-btn.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        
        .footer--social-btn.linkedin:hover {
            background-color: #0A66C2;
        }
        
        .footer--social-btn.youtube:hover {
            background-color: #FF0000;
        }
        
        .footer--decoration {
            margin: 25px 0;
            opacity: 0.6;
            font-size: 16px;
        }
        
        .footer--copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #334155;
            font-size: 14px;
            opacity: 0.7;
        }
        
        @media (max-width: 600px) {
            .footer--social {
                flex-direction: column;
                align-items: center;
            }
            
            .footer--social-btn {
                width: 200px;
                justify-content: center;
            }
        }