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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

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

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

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

/* Main content */
.main-content {
    margin-bottom: 40px;
}

/* Disclaimer section */
.disclaimer-section {
    margin-bottom: 40px;
}

.disclaimer-section h2 {
    color: #e53e3e;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #fc8181;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(252, 129, 129, 0.2);
}

.disclaimer-box p {
    margin-bottom: 15px;
    font-weight: 500;
    color: #742a2a;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Section headers */
h2 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    color: #4a5568;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

/* Policy sections */
.policy-section, .disclaimer-item, .terms-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.policy-section p, .disclaimer-item p, .terms-section p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1rem;
}

.policy-section p:last-child, .disclaimer-item p:last-child, .terms-section p:last-child {
    margin-bottom: 0;
}

/* Lists */
ul {
    margin: 15px 0;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Last updated */
.last-updated {
    font-style: italic;
    color: #718096;
    margin-bottom: 30px;
    text-align: center;
    padding: 10px;
    background: #edf2f7;
    border-radius: 6px;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
}

.footer p {
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .disclaimer-box {
        padding: 20px;
    }
    
    .policy-section, .disclaimer-item, .terms-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 5px;
        padding: 10px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .disclaimer-box {
        padding: 15px;
    }
    
    .policy-section, .disclaimer-item, .terms-section {
        padding: 12px;
    }
}

/* Support page specific styles */
.support-box, .contact-box, .feedback-box {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    border: 2px solid #4fd1c7;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(79, 209, 199, 0.2);
}

.contact-method {
    text-align: center;
}

.email-link {
    margin: 20px 0;
}

.email-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.response-time {
    font-style: italic;
    color: #4a5568;
    margin-top: 15px;
}

.faq-item, .troubleshooting-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #4fd1c7;
}

.footer-nav {
    margin-top: 15px;
}

.footer-nav a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    .disclaimer-box {
        background: #f0f0f0;
        border: 1px solid #ccc;
    }
    
    .policy-section, .disclaimer-item, .terms-section {
        background: white;
        border-left: 2px solid #ccc;
        break-inside: avoid;
    }
    
    .support-box, .contact-box, .feedback-box {
        background: #f0f0f0;
        border: 1px solid #ccc;
    }
    
    .email-button {
        background: #333;
        color: white;
    }
}
