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

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f7;
    font-family: "Segoe UI", sans-serif;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
}

.container {
    max-width: 1140px;
}

/* ================= NAVBAR ================= */

.navbar {
    padding: 10px 15px;
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-left: 15px;
    font-weight: 500;
    transition: 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #FFD854;
}

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

.btn-primary {
    background: black;
    border: none;
}

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

/* ================= FOOTER ================= */

.footer-logo {
    width: 120px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
}

/* ================= TOAST ================= */

.toast {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    border-radius: 8px;
}


/* TERMS PAGE */
.terms-content h3 {
    margin-top: 25px;
    font-size: 20px;
}

.terms-content p {
    color: #555;
    line-height: 1.7;
}

.terms-content ul {
    padding-left: 20px;
}

/* FAQS Page */
.accordion .card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.accordion .card-header {
    background: #fff;
}

.accordion .btn-link {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    width: 100%;
    text-align: left;
}

.accordion .btn-link:hover {
    color: #444;
}