/* Privacy policy — privacy.html */

:root {
    --theme-teal: #11998e;
    --bg-color: #f4f7f6;
    --text-main: #2d3436;
}

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

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

h1 {
    color: var(--theme-teal);
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
    margin-top: 0;
}

h2 {
    margin-top: 2rem;
    color: #444;
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

ul {
    margin-bottom: 1rem;
    color: #555;
}
li {
    margin-bottom: 0.5rem;
}

strong {
    color: #333;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--theme-teal);
    text-decoration: none;
    font-weight: 700;
}
.back-link:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.app-specific-intro {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e8e8e8;
    color: #666;
    font-size: 0.95rem;
}
