/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2196F3;
    --primary-dark: #1976D2;
    --primary-light: #BBDEFB;
    --secondary-color: #4CAF50;
    --text-dark: #212121;
    --text-light: #757575;
    --background: #FFFFFF;
    --background-light: #FAFAFA;
    --border: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Header */
header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 4px var(--shadow);
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
}

header h1 a {
    color: white;
    text-decoration: none;
}

header .tagline {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Main Content */
main {
    background: var(--background);
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.cta-buttons {
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Other Sections */
section {
    padding: 2rem 0;
}

section:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Why Different Section */
.why-different {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.why-different h3 {
    margin-top: 0;
}

/* Privacy Section */
.privacy-security {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
}

.privacy-security h3 {
    margin-top: 0;
}

/* CTA Footer */
.cta-footer {
    text-align: center;
    padding: 3rem 0;
    background: var(--background-light);
    border-radius: 8px;
}

.cta-footer h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
}

footer nav {
    margin-top: 1rem;
}

footer nav a {
    color: white;
    margin: 0 1rem;
    opacity: 0.8;
}

footer nav a:hover {
    opacity: 1;
    text-decoration: none;
}

/* Privacy Policy Page Specific */
.privacy-policy h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.privacy-policy .summary {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 8px;
    border: none;
}

.privacy-policy .summary h2 {
    margin-top: 0;
}

.privacy-policy .disclaimer {
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-top: 2rem;
}

.contact-placeholder {
    background: #FFE082;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
}

/* Support Page Specific */
.support-page h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.coming-soon {
    font-style: italic;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 1rem;
        margin: 1rem auto;
    }

    .btn {
        display: block;
        margin: 0.5rem 0;
    }

    footer nav a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Print Styles for Privacy Policy */
@media print {
    header, footer, .cta-buttons, .cta-footer {
        display: none;
    }

    body {
        background: white;
    }

    main {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    a {
        color: var(--text-dark);
        text-decoration: none;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: var(--text-light);
    }
}
