:root {
    --purple: #3F2D87;      /* brand purple */
    --yellow: #FFC200;      /* accent yellow */
    --white:  #FFFFFF;
}

/* --- RESET / BASE ------------------------------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: "Inter", sans-serif;
    color: var(--white);
    background: var(--purple);
    line-height: 1.5;
    min-height: 100vh;
}
a { color: var(--white); text-decoration: none; font-weight: 500; }
ul { list-style: none; }

.navbar{
    background-color: #32236c;
}

.btn-primary {
    background: var(--yellow) !important;
    color: var(--purple) !important;
    border: none !important;
    font-size: 1.125rem;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}
.btn-primary:hover { background: #e7b000 !important; }

/* --- FEATURES ---------------------------------------------- */

.feature-desc{
    max-width: 300px;
}
