/* Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #ffffff;
}

/* Layout container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: #020617;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header-inner {
    display: flex;
    justify-content: flex-start; /* push left */
    align-items: center;
    padding: 20px 40px; /* gives spacing without container */
}

.site-logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Hero section */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 0;
}

.hero p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s ease;
}

.btn:hover {
    background: #2563eb;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    color: #94a3b8;
}