:root {
    --primary-blue: #4d82bc;
    --dark-blue: #2c4a6f;
    --light-bg: #f5f8fc;
    --text-gray: #666;
    --text-dark: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR & HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-blue);
    font-weight: 500;
}

.header-btns {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-outline {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* PAGE HEADER HERO */
.page-header {
    background: linear-gradient(135deg, #edf3fa 0%, #ffffff 100%);
    padding: 60px 8% 40px;
    text-align: center;
}

.page-title {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.page-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.page-breadcrumb a {
    color: var(--primary-blue);
}

/* GENERAL SECTIONS */
.container {
    padding: 60px 8%;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-heading {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

/* FOOTER */
footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 40px 8% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer-col a {
    color: #cbd5e1;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 992px) {
    header nav { display: none; }
}