/* =========================
   GLOBAL STYLES
========================= */

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

body {
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   BUTTONS
========================= */

.btn-primary {
    background: #f39c12;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
}

.btn-outline {
    border: 1px solid #f39c12;
    color: #f39c12;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f39c12;
    color: #fff;
}


