/* style.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8fafc;
}

nav {
    background: #0f172a;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover { color: #10b981; }

h1 { color: #0f172a; }
h2 { color: #1e293b; border-bottom: 2px solid #e2e8f0; padding-bottom: 10px; }

button {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* Ensure the hero-header has a dark background */
.hero-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Explicitly set text color to white */
.hero-header h1 {
    color: #ffffff; /* White text for visibility */
    margin: 0;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-header p {
    color: #cbd5e1; /* Light gray text for readability */
    margin: 15px 0 0 0;
    font-size: 1.25rem;
}