*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#1d1d1d;
}

.site-header{
    background:#002855;
    color:white;
    padding:18px 32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.site-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.site-brand img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.site-brand h1{
    font-size:26px;
    text-transform:uppercase;
    line-height:1;
}

.site-nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.site-nav a{
    color:white;
    text-decoration:none;
    font-weight:800;
}

.home-page{
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

.hero{
    background:white;
    border-radius:14px;
    padding:44px 30px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:34px;
}

.hero h2{
    color:#002855;
    font-size:46px;
    margin-bottom:12px;
}

.hero p{
    color:#555;
    font-size:20px;
    font-weight:700;
}

.home-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.home-card{
    background:white;
    border-radius:14px;
    padding:28px;
    text-decoration:none;
    color:#1d1d1d;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border-top:6px solid #EAAA00;
    transition:.2s;
}

.home-card:hover{
    transform:translateY(-4px);
}

.home-card h3{
    color:#002855;
    font-size:26px;
    margin-bottom:12px;
}

.home-card p{
    color:#555;
    font-size:16px;
    font-weight:700;
    line-height:1.5;
}

.site-footer{
    text-align:center;
    color:#777;
    padding:30px;
    font-size:14px;
}

@media(max-width:900px){
    .site-header{
        flex-direction:column;
        text-align:center;
    }

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

    .hero h2{
        font-size:34px;
    }
}
/* ==========================
   Shared Site Header
========================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    height:110px;
    background:#002855;

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

    padding:0 46px;
    box-shadow:0 4px 18px rgba(0,0,0,.18);

    transition:height .25s ease, padding .25s ease;
}

.site-logo{
    display:flex;
    align-items:center;
    height:100%;
}

.site-logo img{
    height:92px;
    width:auto;
    transition:height .25s ease;
}

.site-header.shrink{
    height:76px;
    padding:0 42px;
}

.site-header.shrink .site-logo img{
    height:58px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:6px;
    height:100%;
}

.main-nav > a,
.nav-item > a{
    height:100%;
    display:flex;
    align-items:center;

    padding:0 18px;

    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:15px;
    font-weight:900;

    transition:background .2s ease, color .2s ease;
}

.main-nav > a:hover,
.nav-item:hover > a{
    background:#EAAA00;
    color:#002855;
}

.nav-item{
    height:100%;
}

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;

    background:white;
    color:#002855;

    padding:34px 70px;

    box-shadow:0 10px 25px rgba(0,0,0,.16);

    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);

    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-item:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-menu div{
    max-width:1100px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, minmax(180px, 1fr));
    gap:18px 40px;
}

.mega-menu h4{
    grid-column:1 / -1;
    color:#002855;
    font-size:22px;
    margin-bottom:8px;
    text-transform:uppercase;
}

.mega-menu a{
    color:#333;
    font-size:17px;
    font-weight:800;
    text-decoration:none;
    padding:14px 0;
    border-bottom:1px solid #e5e5e5;
}

.mega-menu a:hover{
    color:#002855;
}

@media(max-width:850px){
    .site-header{
        position:relative;
        height:auto;
        flex-direction:column;
        gap:12px;
        padding:18px;
    }

    .site-logo img{
        height:74px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
        height:auto;
    }

    .main-nav > a,
    .nav-item > a{
        height:auto;
        padding:12px 10px;
        font-size:13px;
    }

    .mega-menu{
        display:none;
    }
}
/* ==========================================
   About Page
========================================== */

.about-page {
    background: #f4f4f4;
}

.about-main {
    padding-bottom: 70px;
}




.about-eyebrow {
    margin: 0 0 12px;

    color: #eaaa00;

    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}



.about-intro {
    max-width: 720px;
    margin: 22px auto 0;

    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.55;
}

.about-section {
    width: 100%;
    max-width: 1200px;

    margin: 42px auto 0;
    padding: 0 20px;
}

.about-card {
    padding: 38px;

    background: #fff;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-story-card {
    padding: 44px;
}

.about-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 28px;
}

.about-section-icon,
.about-card-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    object-fit: contain;
}
.about-section-label {
    margin: 0 0 6px;

    color: #eaaa00;

    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-card h2 {
    margin: 0 0 18px;

    color: #002855;

    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
}

.about-copy {
    max-width: 920px;
}

.about-copy p,
.about-card > p,
.about-founder-copy p,
.about-contact-card p {
    margin: 0 0 18px;

    color: #4f4f4f;

    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.7;
}

.about-copy p:last-child,
.about-card > p:last-child,
.about-founder-copy p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}

.about-card-icon {
    margin-bottom: 24px;
}

.about-list {
    margin: 0;
    padding-left: 22px;

    color: #4f4f4f;

    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.8;
}

.about-founder-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;

    gap: 50px;
}

.about-founder-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-founder-mark img {
    width: 300px;
    max-width: 100%;
    height: auto;

    opacity: 0.95;
}
.about-founder-mark span {
    color: #eaaa00;

    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.about-founder-mark small {
    margin-top: 10px;

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);

    gap: 50px;
}

.about-contact-links {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.about-contact-link {
    display: flex;
    flex-direction: column;

    padding: 16px 18px;

    background: #f4f4f4;
    border-left: 5px solid #eaaa00;
    border-radius: 8px;

    color: #002855;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.about-contact-link:hover {
    transform: translateX(4px);
    background: #ececec;
}

.about-contact-link span {
    margin-bottom: 3px;

    color: #777;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-disclaimer {
    width: calc(100% - 40px);
    max-width: 1160px;

    margin: 42px auto 0;
    padding: 22px 28px;

    background: #002855;
    border-radius: 10px;

    color: #fff;
    text-align: center;
}

.about-disclaimer p {
    margin: 0;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.55;
}

/* ==========================================
   About Page Responsive
========================================== */

@media (max-width: 850px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-founder-card,
    .about-contact-card {
        grid-template-columns: 1fr;
    }

    .about-founder-mark {
        width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
   

    .about-intro {
        font-size: 1.08rem;
    }

    .about-section {
        margin-top: 26px;
        padding: 0 12px;
    }

    .about-card,
    .about-story-card {
        padding: 26px 22px;
    }

    .about-section-heading {
        gap: 14px;
    }

    .about-section-number,
    .about-card-icon {
        width: 44px;
        height: 44px;
    }

    .about-card h2 {
        font-size: 1.55rem;
    }

    .about-copy p,
    .about-card > p,
    .about-founder-copy p,
    .about-contact-card p {
        font-size: 1rem;
    }

    .about-founder-mark {
        width: 180px;
    }

    .about-founder-mark span {
        font-size: 2.4rem;
    }

    .about-disclaimer {
        width: calc(100% - 24px);
        margin-top: 26px;
    }
}
.about-container {
    max-width: 1280px;
    margin: 56px auto 80px;
    padding: 0 32px;
}
/* ==========================================
   Homepage Main Content
========================================== */

.home-content {
    width: 100%;
    max-width: 1400px;
    margin: 44px auto 0;
    padding: 0 24px;

    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
    align-items: start;
    gap: 34px;
}

.home-section-heading {
    margin-bottom: 22px;
}

.home-section-label {
    margin: 0 0 5px;

    color: #eaaa00;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-section-heading h2 {
    margin: 0;

    color: #002855;
    font-size: 2rem;
    font-weight: 900;
}

/* ==========================================
   Article Cards
========================================== */

.article-card {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
}

.article-card img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
}

.article-card-content {
    padding: 2rem;
}

.article-card time {
    margin-bottom: 10px;

    color: #777;
    font-size: 0.9rem;
    font-weight: 700;
}

.article-card h3 {
    margin: 0 0 20px;

    color: #002855;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
}

.article-card a {
    margin-top: auto;
    padding: 10px 16px;

    background: #002855;
    border-radius: 6px;

    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.article-card a:hover {
    background: #eaaa00;
    color: #002855;
}

/* ==========================================
   Database Links — Right Column
========================================== */

.home-database-links {
    position: sticky;
    top: 100px;
}

.database-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.database-link-card {
    display: block;

    padding: 22px;

    background: #fff;
    border-top: 5px solid #eaaa00;
    border-radius: 12px;

    color: inherit;
    text-decoration: none;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.database-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.database-link-card h3 {
    margin: 0 0 8px;

    color: #002855;
    font-size: 1.25rem;
    font-weight: 900;
}

.database-link-card p {
    margin: 0;

    color: #555;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}
@media (max-width: 700px) {
    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card img {
        height: 200px;
        min-height: 0;
    }
}
/* ==========================================
   Friends Section
========================================== */

.friends-section {
    width: 100%;
    max-width: 1400px;

    margin: 70px auto 0;
    padding: 48px 24px 60px;

    border-top: 1px solid #dedede;
}

.friends-heading {
    text-align: center;
    margin-bottom: 38px;
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    justify-items: center;
    align-items: start;

    gap: 34px 28px;
}

.friend-link {
    width: 100%;
    max-width: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    color: #002855;
    text-align: center;
    text-decoration: none;

    transition: transform 0.2s ease;
}

.friend-link:hover {
    transform: translateY(-5px);
}

.friend-link img {
    display: block;

    width: 105px;
    height: 105px;

    object-fit: contain;

    transition: transform 0.2s ease;
}

.friend-link:hover img {
    transform: scale(1.06);
}

.friend-link span {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.25;
}

/* ==========================================
   Homepage Responsive
========================================== */

@media (max-width: 1050px) {
    .home-content {
        grid-template-columns: 1fr;
    }

    .home-database-links {
        position: static;
    }

    .database-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .friends-grid {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
}

@media (max-width: 700px) {
    .home-content {
        padding: 0 14px;
    }

    .article-grid,
    .database-link-grid {
        grid-template-columns: 1fr;
    }

    .article-card img {
        height: 190px;
    }

    .friends-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .friends-grid {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 30px 18px;
    }
}
.article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #b88700;
}
/* ==========================================
   Full Article Pages
========================================== */

.article-page {
    background: #f4f4f4;
}

.article-main {
    width: 100%;
    max-width: 1080px;

    margin: 0 auto;
    padding: 56px 24px 80px;
}

.article-full {
    overflow: hidden;

    background: #fff;
    border-radius: 16px;

    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.09);
}

.article-full-header {
    padding: 52px 64px 38px;
}

.article-back-link {
    display: inline-block;
    margin-bottom: 32px;

    color: #002855;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.article-back-link:hover {
    color: #b88700;
}

.article-category {
    margin: 0 0 12px;

    color: #eaaa00;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-full-header h1 {
    max-width: 850px;
    margin: 0;

    color: #002855;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
}

.article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;

    margin-top: 24px;

    color: #6b6b6b;
    font-size: 0.95rem;
    font-weight: 700;
}

.article-hero-image {
    margin: 0;
}

.article-hero-image img {
    display: block;

    width: 100%;
    max-height: 620px;

    object-fit: cover;
}

.article-body {
    max-width: 790px;

    margin: 0 auto;
    padding: 54px 36px 64px;

    color: #3f3f3f;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body p {
    margin: 0 0 26px;
}

.article-body .article-lead {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.65;
}

.article-body h2 {
    margin: 48px 0 18px;

    color: #002855;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
}

.article-inline-image {
    margin: 42px 0;
}

.article-inline-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 10px;
}

.article-inline-image figcaption {
    margin-top: 10px;

    color: #777;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.45;
}

.article-body blockquote {
    margin: 38px 0;
    padding: 22px 28px;

    background: #f4f4f4;
    border-left: 6px solid #eaaa00;

    color: #002855;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.55;
}

.article-full-footer {
    padding: 26px 64px;

    background: #002855;
}

.article-full-footer a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.article-full-footer a:hover {
    color: #eaaa00;
}

@media (max-width: 700px) {
    .article-main {
        padding: 28px 12px 50px;
    }

    .article-full-header {
        padding: 34px 24px 28px;
    }

    .article-body {
        padding: 36px 24px 46px;

        font-size: 1rem;
    }

    .article-body .article-lead {
        font-size: 1.14rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .article-full-footer {
        padding: 22px 24px;
    }
}