:root {
    --ink: #132238;
    --muted: #66758a;
    --blue: #0b6ea8;
    --teal: #0aa39a;
    --mint: #eaf8f5;
    --sky: #eef7ff;
    --white: #ffffff;
    --line: #d9e7ee;
    --shadow: 0 24px 60px rgba(19, 34, 56, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f8fbfd;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

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

.utility {
    background: #071f33;
    color: #dcefff;
    font-size: 14px;
    padding: 8px 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-weight: 850;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 14px;
}

.nav-link {
    color: #35475d;
    font-weight: 750;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-pill {
    color: #fff !important;
    background: var(--blue);
    border-radius: 999px;
    padding-inline: 18px !important;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 68px;
    background:
        linear-gradient(110deg, rgba(238, 247, 255, 0.98), rgba(234, 248, 245, 0.86)),
        url("https://images.unsplash.com/photo-1584982751601-97dcc096659c?q=80&w=1800&auto=format&fit=crop") right center/cover;
}

.hero-card {
    max-width: 780px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(217, 231, 238, 0.9);
    border-radius: 24px;
    padding: clamp(28px, 5vw, 54px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.kicker {
    display: inline-flex;
    color: var(--blue);
    background: #e4f4ff;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 850;
    font-size: 13px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin: 18px 0;
}

.hero p,
.section-lead,
.card-modern p,
.notice-modern p {
    color: var(--muted);
    line-height: 1.75;
}

.btn-modern,
.btn-soft {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 850;
}

.btn-modern {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.btn-soft {
    color: var(--blue);
    background: #e4f4ff;
}

.section {
    padding: 82px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.08;
}

.card-modern,
.notice-modern,
.profile-modern {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(19, 34, 56, 0.07);
}

.card-modern {
    height: 100%;
    padding: 28px;
}

.card-modern i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--teal);
    border-radius: 18px;
    margin-bottom: 18px;
}

.card-modern h3,
.notice-modern h3,
.profile-modern h3 {
    font-size: 1.2rem;
    font-weight: 850;
}

.notice-modern {
    padding: 24px;
}

.notice-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.notice-row:last-child {
    border-bottom: 0;
}

.notice-date {
    text-align: center;
    color: var(--blue);
    background: var(--sky);
    border-radius: 16px;
    padding: 10px 6px;
    font-weight: 900;
}

.notice-date small {
    display: block;
    color: var(--muted);
}

.band {
    color: #fff;
    background: linear-gradient(135deg, #0b6ea8, #0aa39a);
    padding: 64px 0;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
}

.profile-modern {
    overflow: hidden;
}

.profile-modern img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.profile-modern div {
    padding: 22px;
}

footer {
    color: #dcefff;
    background: #071f33;
    padding: 42px 0 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .hero,
    .section {
        padding: 58px 0;
    }
}
