/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Funnel Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

/* Navigation styles */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.nav-links a {
    color: #BB86FC;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background-color: #BB86FC;
    color: #121212;
}

.nav-links a.active {
    background-color: #BB86FC;
    color: #121212;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(187, 134, 252, 0.3);
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.app-subtitle {
    font-size: 1.2rem;
    color: #BBBBBB;
    font-weight: 400;
    margin: 0;
}

/* Content styles */
.content {
    flex: 1;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #1E1E1E;
    border-radius: 16px;
    border: 1px solid #333;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #BB86FC;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section h3:first-of-type {
    margin-top: 0;
}

.policy-section p {
    margin-bottom: 15px;
    color: #CCCCCC;
    font-weight: 400;
}

.policy-section ul {
    margin: 15px 0 15px 20px;
    color: #CCCCCC;
}

.policy-section li {
    margin-bottom: 8px;
    color: #CCCCCC;
}

.last-updated {
    color: #BBBBBB !important;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 20px !important;
}

/* Contact information styles */
.contact-info {
    background-color: #2A2A2A;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #BB86FC;
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 15px;
    color: #CCCCCC;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #BB86FC;
    font-weight: 600;
}

.contact-item a {
    color: #03DAC6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #00BFA5;
    text-decoration: underline;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    color: #BBBBBB;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .app-title {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .app-title {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #BB86FC;
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background-color: #BB86FC;
    color: #ffffff;
}

::-moz-selection {
    background-color: #BB86FC;
    color: #ffffff;
}
