:root {
    --primary: #D99E32;
    --dark: #F9FAFB;
    --light: #004D3F;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 span {
    color: var(--primary);
}

p {
    font-size: 1.1rem;
    color: #F9FAFB;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #3A4A51;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}