:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --border: #e5e7eb;
    --danger: #ef4444;
    --text: #1f2937;
}

/* GLOBAL */
.page-wrap {
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 24px;
}

.section {
    margin-top: 60px;
}

h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.btn {
    background: var(--green);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--green-dark);
}