.footer-page {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.logo-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-header img {
    height: 120px;
    width: auto;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 40px 76px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.legal-page h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.legal-page h2 {
    color: #34495e;
    margin: 30px 0 15px 0;
}

.legal-page p {
    margin-bottom: 15px;
    color: #2c3e50;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .footer-page {
        padding: 10px 5px;
    }
    
    .legal-page {
        max-width: 100%;
        margin: 0;
        padding: 15px 5px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        width: calc(100% - 5px);
    }
    
    .legal-page h1,
    .legal-page h2,
    .legal-page p {
        background: none;
        padding: 0;
        border-radius: 0;
        margin-bottom: 15px;
        box-shadow: none;
        border: none;
    }
    
    .back-link {
        background: none;
        padding: 0;
        border-radius: 0;
        margin-top: 20px;
        box-shadow: none;
        border: none;
    }
}