/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

/* Navigation */
header {
    margin-bottom: 80px;
}

nav {
    border-bottom: 1px solid #000;
    padding: 20px 0;
}

nav a {
    text-decoration: none;
    color: #000;
    margin-right: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

nav a.active {
    text-decoration: underline;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Oranienbaum', serif;
    font-weight: normal;
    letter-spacing: 1px;
}

h1 {
    font-size: 5em;
    margin-bottom: 40px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.4em;
    margin: 40px 0 15px 0;
}

p {
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 600px;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    padding: 20px 0;
}

/* App Store Button */
.app-links {
    margin: 60px 0;
}

.app-store-button {
    display: inline-block;
    color: #000;
    padding: 12px 24px;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.app-store-button:hover {
    background: #000;
    color: #fff;
}

/* Privacy Policy Specific */
.privacy-content {
    max-width: 600px;
}

.privacy-content ul {
    margin: 10px 0 20px 20px;
    list-style-type: none;
}

.privacy-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.privacy-content ul li:before {
    content: "—";
    position: absolute;
    left: -20px;
}

.privacy-content em {
    font-style: normal;
    border-bottom: 1px solid #000;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 20px 0;
    border-top: 1px solid #000;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.2em;
    }
} 