/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

a { text-decoration: none; color: inherit; }

/* ---------- HEADER ---------- */
header {
    position: sticky;
    top: 0;
    background: #1e3a8a;
    color: #fff;
    padding: 1rem 2rem;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li {
    font-weight: bold;
}
/* ---------- HERO BANNER ---------- */
.hero-banner {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-btn {
    background: #fff;
    color: #1e3a8a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* Responsive hero */
@media (max-width: 620px) {
    .hero-banner {
        height: auto;
        padding: 3rem 1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
    background: #e2e8f0;
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #1e3a8a;
}

/* ---------- CONTENT ---------- */
section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: auto;
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e3a8a;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 900px) {
    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 620px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
}
/* ---------- FOOTER ---------- */
footer {
    background: #1e3a8a;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

footer .social a {
    margin: 0 10px;
    color: #fff;
    font-weight: bold;
}
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

footer {
    background: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}


