:root {
    --cherry: #ed454f;
    --coral: #f77357;
    --sunshine: #ffc533;
    --buttercup: #ffe573;
    --cream: #fff7eb;
    --deep-rose: #bd2945;
    --ink: #2d1b1f;
    --muted: #6b5a5e;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream) 0%, #fff3d8 100%);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--sunshine) 0%, var(--coral) 50%, var(--cherry) 100%);
    color: white;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(189, 41, 69, 0.15);
}

header .inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    color: white;
}

header .brand .sun {
    font-size: 1.8rem;
    line-height: 1;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 18px;
    opacity: 0.92;
    transition: opacity 0.15s;
}

nav a:hover { opacity: 1; text-decoration: underline; }

main {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 20px 80px;
}

h1 {
    font-size: 2rem;
    color: var(--deep-rose);
    margin-bottom: 0.4em;
}

h2 {
    font-size: 1.25rem;
    color: var(--deep-rose);
    margin-top: 2em;
    margin-bottom: 0.4em;
}

h3 {
    font-size: 1.05rem;
    color: var(--cherry);
    margin-top: 1.5em;
    margin-bottom: 0.3em;
}

p, li { color: var(--ink); }

a { color: var(--cherry); }

ul { padding-left: 1.4em; }

.hero {
    background: white;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(247, 115, 87, 0.18);
    margin-bottom: 28px;
}

.hero p { color: var(--muted); font-size: 1.1rem; }

.hero .ctas {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.1s, box-shadow 0.1s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--cherry);
    color: white;
    box-shadow: 0 3px 10px rgba(237, 69, 79, 0.35);
}

.btn-primary:hover { box-shadow: 0 5px 14px rgba(237, 69, 79, 0.45); }

.btn-secondary {
    background: var(--buttercup);
    color: var(--deep-rose);
}

.card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(247, 115, 87, 0.12);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.feature {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(247, 115, 87, 0.1);
}

.feature .icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.feature h3 { margin: 0 0 4px; color: var(--deep-rose); font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.9rem; }

form { display: flex; flex-direction: column; gap: 14px; }

label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    color: var(--deep-rose);
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    border: 2px solid #f4d8c4;
    border-radius: 10px;
    background: white;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(247, 115, 87, 0.15);
}

textarea { min-height: 140px; resize: vertical; }

.note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 4px;
}

.callout {
    background: rgba(255, 229, 115, 0.4);
    border-left: 4px solid var(--sunshine);
    padding: 14px 18px;
    border-radius: 8px;
    margin: 18px 0;
}

footer {
    text-align: center;
    padding: 30px 20px 50px;
    color: var(--muted);
    font-size: 0.9rem;
}

footer a { color: var(--cherry); margin: 0 8px; }
