* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #15304d;
    background: #f4f7fb;
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.03em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

body.overflow-hidden {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-shell {
    padding: 78px 0 42px;
    background: radial-gradient(circle at top left, #0b61c8, #071f39 58%);
    color: #fff;
}

.section-pad {
    padding: 52px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.explore-card {
    display: block;
}

.explore-tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 24px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.explore-tile span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.explore-card-copy {
    padding: 14px 4px 0;
}

.explore-card-copy h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #15304d;
}

.explore-card-copy p {
    margin: 0;
    color: #5b748e;
    line-height: 1.6;
}

.card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce6f2;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 36px rgba(8, 36, 64, 0.08);
}

.card h3,
.card h2 {
    margin-top: 0;
}

.card p {
    color: #5a738d;
}

.content-shell {
    padding: 28px 0 72px;
}

.page-hero {
    padding: 58px 0 24px;
    background: linear-gradient(180deg, #e9f2ff 0%, #f4f7fb 100%);
}

.page-hero h1,
.hero-copy h1 {
    margin: 0 0 12px;
    line-height: 1.08;
    font-weight: 800;
}

.page-hero p,
.hero-copy p {
    max-width: 760px;
    line-height: 1.7;
    font-size: 1.02rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(13, 98, 200, 0.08);
    background: rgba(13, 98, 200, 0.08);
    color: #0b4ea2;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.info-banner {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff7df;
    border: 1px solid #f0d583;
    color: #6d5508;
}

.breadcrumbs {
    display: none;
}

.breadcrumbs span,
.breadcrumbs a {
    overflow-wrap: anywhere;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(8, 36, 64, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(8, 36, 64, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, #0c5ebd, #0b78d0 58%, #0f93df);
    color: #fff;
}

.btn-outline {
    border-color: #bfd2e7;
    color: #0d4f99;
    background: rgba(255, 255, 255, 0.94);
}

.hero-shell .btn-outline {
    border-color: rgba(255,255,255,0.34);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-footer {
    padding: 20px 0 24px;
    background: transparent;
    color: #dce7f5;
}

.footer-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 18px 24px;
    padding: 18px 24px;
    border: 1px solid rgba(7, 31, 57, 0.1);
    border-radius: 22px;
    background: linear-gradient(135deg, #082441, #0b3a69 58%, #0e4a85);
    box-shadow: 0 18px 36px rgba(8, 36, 64, 0.12);
}

.footer-brand,
.footer-meta {
    display: grid;
    gap: 6px;
}

.footer-logo {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand p,
.footer-meta p,
.footer-meta span {
    margin: 0;
    color: #c9d9eb;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links a {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}

.footer-meta {
    text-align: right;
}

@media (max-width: 767px) {
    .footer-bar {
        grid-template-columns: 1fr;
        padding: 18px;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-meta {
        text-align: left;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-tile {
        min-height: 240px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
