/* 
 * EATLY - Legal Pages Style (Apple Compliant & Premium Design)
 */
:root {
    --primary: #fd750e;
    --text-main: #1a1a1b;
    --text-muted: #666;
    --bg: #fdfdfd;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
}

.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.logo-container img {
    height: 48px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
    text-align: left;
}

.update-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

p,
li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 16px;
}

ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.highlight-box {
    background: #fff8f3;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 60px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.back-link:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .legal-container {
        margin: 20px;
        padding: 24px;
    }

    h1 {
        font-size: 2rem;
    }
}