/* =========================
   BASE STYLES
   ========================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #0d6efd;
}

.container {
    max-width: 1200px;
}

/* =========================
   NAVBAR
   ========================= */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.brand-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107;
}

/* =========================
   FOOTER
   ========================= */
footer {
    background: #222;
    color: #fff;
    padding-top: 50px;
    font-size: 0.95rem;
}

footer a {
    color: #ddd;
}

footer a:hover {
    color: #ffc107;
}

footer hr {
    border-color: #444;
}

/* =========================
   UTILITIES
   ========================= */
.text-center {
    text-align: center;
}

.shadow-sm {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}