:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --accent-color: #e74c3c;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

section {
    margin-bottom: 60px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

.app-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.app-button {
    display: flex;
    align-items: center;
    background-color: var(--dark-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.app-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

footer nav {
    margin-bottom: 20px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

/* Privacy Policy Specific Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

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

/* Support Page Styles */
.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-section {
    margin-bottom: 40px;
}

.support-section h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .app-links {
        flex-direction: column;
        align-items: center;
    }
}