:root {
    --primary-color: #4169E1;
    --secondary-color: #6495ED;
    --text-color: #333;
    --light-bg: #f5f5f5;
}

* {
    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);
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.features {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.privacy {
    text-align: center;
    padding: 4rem 2rem;
}

.privacy i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

/* Privacy Policy specific styles - add these to your existing styles.css */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-policy h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.privacy-policy .last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-policy section {
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.privacy-policy h3 {
    color: var(--secondary-color);
    margin: 1rem 0;
}

.privacy-policy ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.privacy-policy p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Review Notes specific styles - add to your existing styles.css */
.review-notes {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-header {
    text-align: center;
    margin-bottom: 3rem;
}

.app-version {
    color: #666;
    font-size: 1.1rem;
}

.review-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.review-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.highlight-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.security-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.security-box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.security-box li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-box li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.permissions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.permission-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.contact {
    text-align: center;
    border-bottom: none;
}

.contact-email {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Add to your existing nav styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Support page styles */
.support h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.support .last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.support section {
    margin-bottom: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.support h2 {
    color: #3498db;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.support h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #2980b9;
    margin-top: 0;
    font-weight: 600;
}

.support ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.support ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.support a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.support a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive adjustments for support page */
@media (max-width: 768px) {
    .support section {
        padding: 1rem;
    }
    
    .faq-item {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .support h3 {
        font-size: 1.1rem;
    }
}

/* RTL support for Arabic */
[dir="rtl"] .support ul {
    padding-right: 1.5rem;
    padding-left: 0;
} 
