:root {
    --accent: #e69138;
    --accent-dark: #c9761f;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #fdf8f3;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: #ffffff;
}

header {
    background: var(--bg-light);
    padding: 3rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

header h1 {
    font-size: 2.2rem;
    color: var(--accent);
    max-width: 800px;
    margin: 0 auto;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

h2 {
    color: var(--accent-dark);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid var(--accent);
    padding-left: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.partner-box {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #fff !important;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: var(--accent-dark);
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 3rem;
}

footer a {
    color: var(--text-light);
    font-weight: 400;
}
