body
 {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #5F6B7A;
    background-color: #FFFFFF;
    line-height: 1.6;
}

.site-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E6E9EE;
    position: relative;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.horizontal-logo {
    width: 310px;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    background: none;
    color: #17375E;
    padding: 0;
    margin: 0;
    font-weight: 600;
}

.main-nav a:hover {
    color: #C76A2A;
}

.nav-button {
    background-color: #C76A2A;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 4px;
    margin: 0;
    white-space: nowrap;
}

.nav-button:hover {
    background-color: #17375E;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: 36px;
}

h3 {
    color: #C76A2A;
    font-size: 22px;
}

a {
    display: inline-block;
    background-color: #C76A2A;
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    margin-top: 15px;
    border-radius: 4px;
}

a:hover {
    background-color: #17375E;
}

footer {
    background-color: #17375E;
    color: white;
    text-align: center;
    padding: 20px;
}
.site-main {
    width: 100%;
}

.hero {
    position: relative;
    background: linear-gradient(
        110deg,
        #ffffff 0%,
        #ffffff 68%,
        #f4f5f6 100%
    );
    padding: 70px 8% 0;
    margin-bottom: 70px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 1;
    padding-bottom: 80px;
}

.hero-eyebrow {
    color: #C76A2A;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.05;
    margin: 0 0 25px;
    font-weight: 600;
}

.hero h1 span {
    display: block;
    color: #C76A2A;
    font-weight: 400;
}

.hero-tagline {
    color: #17375E;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-description {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 13px 24px;
    border-radius: 3px;
    font-weight: 700;
    margin: 0;
}

.primary-button {
    background-color: #C76A2A;
    color: #FFFFFF;
}

.secondary-button {
    background-color: transparent;
    color: #17375E;
    border: 2px solid #17375E;
}

.secondary-button:hover {
    background-color: #17375E;
    color: #FFFFFF;
}

.hero-accent {
    position: relative;
    z-index: 2;
    margin-left: -10%;
    margin-right: -10%;
    background-color: #17375E;
    color: #FFFFFF;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    letter-spacing: 5px;
    font-size: 13px;
}

.hero-accent p {
    margin: 0;
}

.hero-accent span {
    color: #C76A2A;
}
.logo-link {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    display: block;
}

.services-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 30px 90px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-eyebrow {
    color: #C76A2A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0 0 15px;
    font-size: 44px;
}

.section-heading > p:last-child {
    font-size: 18px;
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E6E9EE;
    border-top: 4px solid #17375E;
    padding: 32px;
    min-height: 260px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(23, 55, 94, 0.10);
}

.service-number {
    color: #C76A2A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card h3 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: 25px;
    margin: 12px 0;
}

.service-card p {
    line-height: 1.65;
    margin-bottom: 25px;
}

.service-card a {
    color: #C76A2A;
    font-weight: 700;
}

.service-card a:hover {
    color: #17375E;
}

.resource-card {
    background-color: #17375E;
    border-top-color: #C76A2A;
}

.resource-card h3,
.resource-card p {
    color: #FFFFFF;
}

.resource-card a {
    color: #FFFFFF;
}

.resource-card a:hover {
    color: #E6E9EE;
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-card a {
    display: inline-block;
    background: transparent;
    color: #C76A2A;
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
}

.service-card a:hover {
    background: transparent;
    color: #17375E;
}

.resource-card a {
    color: #FFFFFF;
}

.resource-card a:hover {
    color: #E6E9EE;
}

.about-preview {
    background-color: #F6F7F8;
    padding: 90px 30px;
}

.about-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-copy h2 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: 44px;
    line-height: 1.15;
    margin: 10px 0 25px;
}

.about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #17375E;
}

.about-copy > p {
    line-height: 1.75;
}

.about-link {
    display: inline-block;
    margin-top: 20px;
    color: #C76A2A;
    font-weight: 700;
}

.about-link:hover {
    color: #17375E;
}

.approach-grid {
    display: grid;
    gap: 18px;
}

.approach-item {
    background-color: #FFFFFF;
    border-left: 4px solid #C76A2A;
    padding: 24px 28px;
}

.approach-item span {
    color: #C76A2A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.approach-item h3 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: 24px;
    margin: 6px 0 8px;
}

.approach-item p {
    margin: 0;
    line-height: 1.6;
}

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

.about-preview .about-link {
    display: inline-block;
    background: transparent;
    color: #C76A2A;
    padding: 0;
    margin-top: 20px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
}

.about-preview .about-link:hover {
    background: transparent;
    color: #17375E;
}

.help-cta {
    background-color: #17375E;
    padding: 65px 30px;
}

.help-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 70px;
    align-items: center;
}

.help-cta .section-eyebrow {
    color: #C76A2A;
}

.help-cta h2 {
    font-family: Georgia, serif;
    color: #FFFFFF;
    font-size: 38px;
    line-height: 1.2;
    margin: 8px 0 15px;
}

.help-cta-copy > p:last-child {
    color: #E6E9EE;
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
}

.help-cta-action {
    text-align: center;
}

.help-cta .cta-button {
    display: inline-block;
    background-color: #C76A2A;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 3px;
}

.help-cta .cta-button:hover {
    background-color: #FFFFFF;
    color: #17375E;
}

.help-cta-action p {
    color: #E6E9EE;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
}

@media (max-width: 850px) {
    .help-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .help-cta-action {
        text-align: left;
    }
}

.resources-preview {
    background-color: #FFFFFF;
    padding: 90px 30px 55px;
}

.resources-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-preview .section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

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

.resource-item {
    background-color: #F6F7F8;
    border-bottom: 4px solid #C76A2A;
    padding: 32px;
    min-height: 280px;
}

.resource-label {
    color: #C76A2A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.resource-item h3 {
    font-family: Georgia, serif;
    color: #17375E;
    font-size: 25px;
    line-height: 1.25;
    margin: 0 0 16px;
}

.resource-item p {
    line-height: 1.65;
    margin-bottom: 24px;
}

.resource-item a,
.resources-all a {
    background: transparent;
    color: #C76A2A;
    padding: 0;
    margin: 0;
    border-radius: 0;
    font-weight: 700;
}

.resource-item a:hover,
.resources-all a:hover {
    background: transparent;
    color: #17375E;
}

.resources-all {
    margin-top: 35px;
    text-align: center;
}

.resources-all a {
    font-size: 17px;
}

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

/* =========================
   FOOTER
   ========================= */

.site-footer {
    background-color: #17375E;
    color: #FFFFFF;
    padding: 0 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 0 45px;

    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 70px;
}

.footer-brand h3 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin: 0 0 8px;
    color: #FFFFFF;
}

.footer-tagline {
    color: #C76A2A;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p:last-child,
.footer-contact p {
    color: #E6E9EE;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    color: #FFFFFF;
    margin: 0 0 18px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #E6E9EE;
    text-decoration: none;
    margin-bottom: 9px;
}

.footer-links a:hover {
    color: #C76A2A;
}

.site-footer .footer-cta {
    display: inline-block;
    background: transparent;
    color: #C76A2A;
    padding: 0;
    margin-top: 8px;
    font-weight: 700;
    text-decoration: none;
}

.site-footer .footer-cta:hover {
    background: transparent;
    color: #FFFFFF;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;

    border-top: 1px solid rgba(255,255,255,.18);

    padding: 20px 0 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: #E6E9EE;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: #E6E9EE;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #C76A2A;
}

.footer-legal span {
    color: #C76A2A;
}


/* Footer mobile layout */

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}

/* Footer link override */

.site-footer .footer-links a {
    display: block;
    background: transparent;
    color: #E6E9EE;
    padding: 0;
    margin: 0 0 10px;
    border: none;
    border-radius: 0;
    width: auto;
    font-weight: 400;
    text-decoration: none;
}

.site-footer .footer-links a:hover {
    background: transparent;
    color: #C76A2A;
}

.site-footer .footer-legal a {
    display: inline;
    background: transparent;
    color: #E6E9EE;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    width: auto;
    font-weight: 400;
    text-decoration: none;
}

.site-footer .footer-legal a:hover {
    background: transparent;
    color: #C76A2A;
}

/* =========================
   MOBILE STYLES
   ========================= */

@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        gap: 18px;
        padding: 20px 24px;
    }

    .logo img {
        width: 220px;
        max-width: 80vw;
        height: auto;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

}

/* =========================
   MOBILE NAVIGATION
   ========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 27px;
    height: 3px;
    background-color: #17375E;
    margin: 5px 0;
    transition: 0.2s ease;
}


@media (max-width: 768px) {

    .nav-container {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 15px;
        padding: 15px 24px;
    }

    .horizontal-logo {
        width: 210px;
        max-width: 70vw;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        border-top: 1px solid #E6E9EE;
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav a {
        display: block;
        padding: 12px 5px;
        font-size: 15px;
        border-bottom: 1px solid #E6E9EE;
    }

    .nav-button {
        display: none;
    }

    .main-nav.mobile-open + .nav-button {
        display: block;
        grid-column: 1 / -1;
        text-align: center;
        margin: 0 0 10px;
    }

}

@media (max-width: 768px) {

    .hero-accent {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 14px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-accent p {
        margin: 0;
        font-size: 11px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .hero-accent span {
        flex-shrink: 0;
        font-size: 11px;
    }

}

/* ========================================
   SERVICES PAGE
   ======================================== */

.page-hero {
    background: #f5f6f7;
    padding: 85px 30px 75px;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero .section-eyebrow {
    color: #c96824;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero h1 {
    color: #173d68;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 25px;
}

.page-hero-lead {
    max-width: 760px;
    color: #59677a;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}


/* Services */

.services-page {
    padding: 85px 30px;
    background: #ffffff;
}

.services-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 48px 0;
    border-top: 1px solid #dfe4e8;
}

.service-detail:first-child {
    border-top: 3px solid #173d68;
}

.service-detail-number {
    color: #c96824;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 8px;
}

.service-detail-content {
    max-width: 850px;
}

.service-detail-content h2 {
    color: #173d68;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.service-detail-content p {
    color: #59677a;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.service-detail-link {
    display: inline-block;
    margin-top: 12px;
    color: #c96824;
    font-weight: 700;
    text-decoration: none;
}

.service-detail-link:hover {
    text-decoration: underline;
}


/* Services CTA */

.help-cta {
    background: #173d68;
    padding: 70px 30px;
}

.help-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-cta .section-eyebrow {
    color: #d06a26;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.help-cta h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.help-cta p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.help-cta-action {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #c96824;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 17px 32px;
}

.cta-button:hover {
    opacity: .9;
}


/* Services Mobile */

@media (max-width: 768px) {

    .page-hero {
        padding: 55px 24px 50px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero-lead {
        font-size: 17px;
    }

    .services-page {
        padding: 35px 24px 55px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 35px 0;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .service-detail-content p {
        font-size: 16px;
    }

    .help-cta {
        padding: 55px 24px;
    }

    .help-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .help-cta h2 {
        font-size: 32px;
    }

    .help-cta-action {
        text-align: left;
    }

}

/* Fix Resources card link */
.service-card.featured a,
.service-card.featured .service-link {
    color: #ffffff !important;
}

.service-card.featured a:hover,
.service-card.featured .service-link:hover {
    color: #ffffff !important;
    opacity: 0.85;
}

/* Fix Services page resource link */

.services-page .service-detail-link {
    display: inline-block;
    background: transparent !important;
    color: #C76A2A !important;
    padding: 0;
    margin-top: 12px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
}

.services-page .service-detail-link:hover {
    background: transparent !important;
    color: #17375E !important;
    text-decoration: none;
}

/* ========================================
   RESOURCES PAGE
   ======================================== */

.resources-page {
    background-color: #FFFFFF;
    padding: 85px 30px;
}

.resources-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-intro {
    max-width: 760px;
    margin-bottom: 50px;
}

.resources-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 42px;
    line-height: 1.15;
    margin: 8px 0 18px;
}

.resources-intro > p:last-child {
    color: #59677A;
    font-size: 18px;
    line-height: 1.7;
}


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


.product-card {
    position: relative;
    background-color: #F6F7F8;
    border-top: 4px solid #17375E;
    padding: 34px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(23, 55, 94, 0.10);
    transform: translateY(-3px);
    transition: 0.2s ease;
}


.product-type {
    color: #C76A2A;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}


.product-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 18px;
}


.product-card p {
    color: #59677A;
    line-height: 1.7;
    margin-bottom: 30px;
}


.product-status {
    margin-top: auto;
    color: #C76A2A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Featured purchasable resource */
.product-card-featured {
    grid-column: 1 / -1;
    border-top-color: #C76A2A;
    min-height: 0;
    background: #FFFFFF;
    border-left: 1px solid #E2E6E9;
    border-right: 1px solid #E2E6E9;
    border-bottom: 1px solid #E2E6E9;
}

.product-available-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.product-card-featured .product-type {
    margin-bottom: 0;
}

.product-available-badge {
    display: inline-block;
    background: #17375E;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 12px;
}

.product-card-featured p {
    max-width: 820px;
    margin-bottom: 24px;
}

.product-purchase-row {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.product-price {
    color: #17375E;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.product-price-note {
    color: #7A8796;
    font-size: 13px;
    margin-top: 7px;
}

.product-buy-button {
    white-space: nowrap;
}


/* Custom Resource CTA */

.custom-resource-cta {
    background-color: #17375E;
    padding: 70px 30px;
}

.custom-resource-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-resource-cta .section-eyebrow {
    color: #C76A2A;
}

.custom-resource-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #FFFFFF;
    font-size: 38px;
    margin: 8px 0 18px;
}

.custom-resource-cta p {
    color: #E6E9EE;
    font-size: 17px;
    line-height: 1.7;
    max-width: 750px;
}

.custom-resource-action {
    text-align: center;
}


/* Resources Mobile */

@media (max-width: 850px) {

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

    .custom-resource-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .custom-resource-action {
        text-align: left;
    }

}

@media (max-width: 768px) {

    .resources-page {
        padding: 55px 24px;
    }

    .resources-intro h2 {
        font-size: 34px;
    }

    .product-card {
        min-height: auto;
        padding: 28px;
    }


    .product-available-row,
    .product-purchase-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-purchase-row {
        gap: 20px;
    }

    .product-buy-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .custom-resource-cta {
        padding: 55px 24px;
    }

    .custom-resource-cta h2 {
        font-size: 32px;
    }

}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-page {
    background-color: #FFFFFF;
    padding: 85px 30px;
}

.about-page-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: start;
}

.about-story-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 44px;
    margin: 8px 0 24px;
}

.about-intro {
    color: #17375E;
    font-size: 19px;
    line-height: 1.7;
}

.about-story-copy p {
    color: #59677A;
    line-height: 1.75;
}

.about-values {
    display: grid;
    gap: 18px;
}

.about-value {
    background-color: #F6F7F8;
    border-left: 4px solid #C76A2A;
    padding: 26px 28px;
}

.about-value span {
    color: #C76A2A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-value h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 24px;
    margin: 7px 0 10px;
}

.about-value p {
    margin: 0;
    color: #59677A;
    line-height: 1.65;
}


/* Experience */

.experience-section {
    background-color: #F6F7F8;
    padding: 85px 30px;
}

.experience-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.experience-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 42px;
    margin: 8px 0 18px;
}

.experience-heading > p:last-child {
    color: #59677A;
    font-size: 18px;
    line-height: 1.7;
}

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

.experience-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-top: 3px solid #17375E;
}

.experience-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 24px;
    margin: 0 0 12px;
}

.experience-item p {
    margin: 0;
    color: #59677A;
    line-height: 1.65;
}


/* About mobile */

@media (max-width: 850px) {

    .about-story {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

}

@media (max-width: 768px) {

    .about-page,
    .experience-section {
        padding: 55px 24px;
    }

    .about-story-copy h2,
    .experience-heading h2 {
        font-size: 34px;
    }

}

/* Tighten About page spacing */
.about-page {
    padding-top: 60px;
    padding-bottom: 45px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
    background-color: #FFFFFF;
    padding: 80px 30px 90px;
}

.contact-page-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


/* Contact information */

.contact-info h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 42px;
    line-height: 1.15;
    margin: 8px 0 20px;
}

.contact-intro {
    color: #59677A;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 35px;
}

.contact-note {
    border-top: 3px solid #17375E;
    padding-top: 25px;
    margin-top: 25px;
}

.contact-note h3,
.contact-location h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 22px;
    margin: 0 0 14px;
}

.contact-note ul {
    padding-left: 20px;
    margin: 0;
}

.contact-note li {
    color: #59677A;
    margin-bottom: 9px;
    line-height: 1.5;
}

.contact-location {
    margin-top: 35px;
    padding: 25px;
    background-color: #F6F7F8;
    border-left: 4px solid #C76A2A;
}

.contact-location p {
    color: #59677A;
    line-height: 1.65;
    margin: 0;
}



.contact-direct {
    margin: 28px 0 35px;
    padding: 24px 25px;
    background-color: #F6F7F8;
    border-left: 4px solid #C76A2A;
}

.contact-direct h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 22px;
    margin: 0 0 12px;
}

.contact-direct p {
    color: #59677A;
    line-height: 1.6;
    margin: 0 0 6px;
}

.contact-direct a {
    display: inline;
    background: transparent;
    color: #17375E;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #C76A2A;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.contact-direct a:hover {
    background: transparent;
    color: #C76A2A;
    text-decoration: underline;
}

.contact-response {
    font-size: 14px;
}

.footer-email {
    margin-top: 10px;
}

.footer-email a {
    color: #FFFFFF;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-email a:hover {
    color: #C76A2A;
}


/* Contact form */

.contact-form-wrap {
    background-color: #F6F7F8;
    padding: 38px;
    border-top: 4px solid #17375E;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: #17375E;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;

    background-color: #FFFFFF;
    border: 1px solid #CCD3DA;

    padding: 13px 14px;

    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #17375E;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #C76A2A;
    outline-offset: 1px;
    border-color: #C76A2A;
}

.form-submit {
    background-color: #C76A2A;
    color: #FFFFFF;

    border: none;
    padding: 15px 28px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.form-submit:hover {
    background-color: #17375E;
}

.form-disclaimer {
    color: #59677A;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 15px;
}


/* Contact mobile */

@media (max-width: 850px) {

    .contact-page-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {

    .contact-page {
        padding: 55px 24px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 26px;
    }

}

/* Tighten Contact page spacing */
.contact-page {
    padding-top: 55px;
}

/* Services packages and pricing */
.service-packages {
    background: #f5f6f7;
    padding: 80px 30px;
}
.service-packages-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.packages-heading {
    max-width: 820px;
    margin-bottom: 42px;
}
.packages-heading h2 {
    color: #173d68;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.18;
    margin: 0 0 16px;
}
.packages-heading > p:last-child {
    color: #59677a;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.package-card {
    background: #ffffff;
    border: 1px solid #dfe4e8;
    border-top: 4px solid #173d68;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
}
.package-card-featured { border-top-color: #c96824; }
.package-label {
    color: #c96824;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 12px;
}
.package-card h3 {
    color: #173d68;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.25;
    margin: 0 0 12px;
}
.package-price {
    color: #173d68 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px !important;
    font-weight: 700;
    margin: 0 0 18px !important;
}
.package-card > p:not(.package-label):not(.package-price) {
    color: #59677a;
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 25px;
    flex-grow: 1;
}
.package-button {
    display: inline-block;
    align-self: flex-start;
    background: #c96824;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 20px;
}
.package-button:hover { opacity: .9; }
.package-button-outline {
    background: #173d68;
}
.project-pricing {
    background: #ffffff;
    border: 1px solid #dfe4e8;
    margin-top: 28px;
    padding: 34px 36px;
}
.project-pricing h3 {
    color: #173d68;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    margin: 0 0 22px;
}
.project-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
}
.project-price-grid div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid #e4e8eb;
    color: #173d68;
}
.project-price-grid span {
    color: #c96824;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-note {
    color: #6a7582;
    font-size: 13px;
    line-height: 1.6;
    margin: 24px 0 0;
}
@media (max-width: 900px) {
    .package-grid { grid-template-columns: 1fr; }
    .project-price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .service-packages { padding: 55px 24px; }
    .packages-heading h2 { font-size: 32px; }
    .package-card { padding: 28px 24px; }
    .project-pricing { padding: 28px 24px; }
    .project-price-grid div { flex-direction: column; gap: 5px; }
}

/* ========================================
   ABOUT PAGE - MISSION, VISION & VALUES
   ======================================== */

.values-section {
    background-color: #FFFFFF;
    padding: 75px 30px 80px;
    border-top: 1px solid #E6E9ED;
}

.values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.values-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.values-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 42px;
    margin: 8px 0 18px;
}

.values-heading > p:last-child {
    color: #59677A;
    font-size: 18px;
    line-height: 1.7;
}

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

.value-card {
    background-color: #F6F7F8;
    border-top: 3px solid #C76A2A;
    padding: 28px;
}

.value-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #17375E;
    font-size: 23px;
    margin: 0 0 12px;
}

.value-card p {
    margin: 0;
    color: #59677A;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 55px 24px;
    }

    .values-heading h2 {
        font-size: 34px;
    }

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


/* ========================================
   SEO / INSIGHTS
   ======================================== */
.insights-section { padding: 72px 30px 84px; background: #fff; }
.insights-inner, .article-wrap, .guide-banner-inner { max-width: 1000px; margin: 0 auto; }
.insights-heading { max-width: 760px; margin-bottom: 34px; }
.insights-heading h2, .article-body h2, .article-cta h2, .guide-banner h2 {
    font-family: Georgia, "Times New Roman", serif; color: #17375E;
}
.insights-heading h2 { font-size: 40px; margin: 8px 0 14px; }
.insights-heading p, .insight-card p { color: #59677A; line-height: 1.7; }
.insight-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.insight-card { background: #F6F7F8; border-top: 3px solid #C76A2A; padding: 30px; }
.insight-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.25; margin: 12px 0; }
.insight-card h3 a, .insight-link { color: #17375E; text-decoration: none; }
.insight-link { font-weight: 700; }
.article-hero { background: #F6F7F8; padding: 72px 30px 58px; border-bottom: 1px solid #E6E9ED; }
.article-hero h1 { font-family: Georgia, "Times New Roman", serif; color: #17375E; font-size: 48px; line-height: 1.12; max-width: 900px; margin: 10px 0 20px; }
.article-deck { color: #59677A; font-size: 20px; line-height: 1.65; max-width: 860px; }
.article-meta { color: #7A8491; font-size: 14px; margin-top: 22px; }
.article-body { padding: 58px 30px 84px; }
.article-body .article-wrap { max-width: 820px; }
.article-body h2 { font-size: 30px; margin: 42px 0 14px; }
.article-body p, .article-body li { color: #3F4B59; font-size: 17px; line-height: 1.8; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: #17375E; }
.article-note { background: #F6F7F8; border-left: 4px solid #C76A2A; padding: 20px 22px; color: #3F4B59; line-height: 1.65; }
.article-cta { background: #F6F7F8; border-top: 3px solid #C76A2A; margin: 48px 0; padding: 30px; }
.article-cta h2 { margin-top: 8px; }
.article-back { margin-top: 46px; font-weight: 700; }
.guide-banner { padding: 54px 30px; background: #EEF2F5; border-bottom: 1px solid #E1E5E9; }
.guide-banner-inner { display: flex; gap: 36px; justify-content: space-between; align-items: center; }
.guide-banner-inner > div { max-width: 700px; }
.guide-banner h2 { font-size: 30px; margin: 7px 0 10px; }
.guide-banner p { color: #59677A; line-height: 1.65; margin-bottom: 0; }
@media (max-width: 768px) {
    .article-hero { padding: 52px 24px 44px; }
    .article-hero h1 { font-size: 36px; }
    .article-deck { font-size: 18px; }
    .article-body, .insights-section { padding-left: 24px; padding-right: 24px; }
    .guide-banner-inner { flex-direction: column; align-items: flex-start; }
}
