body {
            margin: 0;
            font-family: Arial, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        main {
            flex: 1;
            padding: 20px;
            background: #f0f0f0;
        }
        
        /* KÜÇÜK FOOTER TASARIMI */
        footer {
            position: relative;
            height: 60px;
            width: 320px;
            
            /* BOŞLUKLAR */
            padding: 10px 20px;
            margin: 0;
            
            /* RENK VE KENARLIK */
            background-color: #2c3e50;
            color: white;
            border-top: 3px solid #e74c3c;
            
            /* METİN */
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.4;
            
            /* FLEXBOX İLE HİZALAMA */
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            /* GÖLGE */
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ecf0f1;
        }