/* Common styles for privacy and support pages */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

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

li {
    margin-bottom: 8px;
}

.app-name {
    font-weight: bold;
    color: #3498db;
}

.highlight {
    background-color: #ecf0f1;
    padding: 15px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.section {
    margin-bottom: 25px;
}

.last-updated {
    font-style: italic;
    color: #7f8c8d;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

/* FAQ specific styles */
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.faq-question {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.faq-answer {
    color: #555;
    margin-left: 10px;
}

/* Response time box */
.response-time {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.response-time h3 {
    color: #155724;
    margin-top: 0;
}

/* Urgent notice box */
.urgent-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.urgent-notice h3 {
    color: #d68910;
    margin-top: 0;
}

/* Policy items styles */
.policy-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    align-items: flex-start;
}

.policy-icon {
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-content {
    flex: 1;
    line-height: 1.5;
}

.policy-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}