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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f7;
}

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

/* Header */
header {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Main content */
main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #1d1d1f;
}

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

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #1d1d1f;
}

/* Support section */
.support {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support a {
    color: #0066cc;
    text-decoration: none;
}

.support a:hover {
    text-decoration: underline;
}

/* FAQ section */
.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #1d1d1f;
}

/* Footer */
footer {
    background-color: #1d1d1f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 40px 0;
    }

    header h1 {
        font-size: 2em;
    }

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

    .feature-item, .faq-item, .support {
        padding: 20px;
    }
}
/* Privacy Page Styles */
.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

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

.privacy-section h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.privacy-section p {
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style-position: inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}
