/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0; /* Light gray text for dark mode */
    line-height: 1.6;
    background-color: #0f111a; /* Dark Navy background matching screenshots */
}

header {
    background: #151925; /* Slightly lighter dark for header */
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #2a2f45;
}

.logo h1 {
    margin: 0;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #5c6aff, #a35cff); /* Gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5c6aff;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at top, #1f253a 0%, #0f111a 100%);
    color: white;
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    margin-bottom: 40px;
    font-size: 1.3rem;
    color: #b0b5c1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(90deg, #5c6aff, #7f5cff);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(92, 106, 255, 0.4);
    transition: transform 0.2s;
}

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

/* Feature Section */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 30px;
}

.feature {
    background: #1c202f;
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    border: 1px solid #2a2f45;
}

.feature h3 {
    color: #fff;
    margin-bottom: 15px;
}

.feature p {
    color: #b0b5c1;
}

/* Legal/Content Pages */
.policy-content, .contact-content {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.policy-content h2, .contact-content h2 {
    color: #fff;
    border-bottom: 2px solid #2a2f45;
    padding-bottom: 10px;
}

.policy-content h3 {
    color: #5c6aff; /* Accent color for subheadings */
    margin-top: 30px;
}

.policy-content ul {
    background: #1c202f;
    padding: 20px 40px;
    border-radius: 10px;
}

a {
    color: #5c6aff;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #2a2f45;
    margin-top: 50px;
}