body {
    background-color: #ffffff;
}

.t-primary-bgcolor {
    background-color: #0079B3;
}

a {
    color: #0079B3;
}

.container {
    width: 1000px;
}

.header-wrapper {
    background-color: #ffffff;
    border-bottom: 3px solid #0079B3;
    position: relative;
}

/* Stretch the header element to full wrapper width so header__top bleeds edge-to-edge */
.header {
    width: 100%;
}

/* ── Top info bar ── */
.header__top {
    background-color: #0079B3;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.21);
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
}

.header__top i {
    margin-right: 5px;
    opacity: 0.5;
}

.header__top-social i {
    opacity: 1;
}

.header__top-social .fa-facebook {
    font-size: 16px;
}

.header__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__top-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #ffffff !important;
    line-height: 1;
}

.header__top-social a:hover {
    color: #ffffff !important;
    opacity: 0.75;
}

.header__top a {
    color: #d9effa;
    text-decoration: none;
}

.header__top a:hover {
    color: #ffffff;
}

/* ── Logo + nav row ── */
.header>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    padding: 20px 0;
    max-height: 150px;
    width: auto;
}

.header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header nav a {
    font-size: 14px;
    margin: 0 12px;
    color: #333;
    line-height: 30px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.header nav a:last-child {
    margin-right: 0;
}

.header nav a:hover {
    color: #0079B3;
    text-decoration: none;
}

/* ── Send Us Files button ── */
.header__nav-btn {
    background-color: rgb(254, 231, 1) !important;
    color: black !important;
    border-radius: 4px;
    padding: 8px 16px;
    margin-left: 6px;
    line-height: normal !important;
    transition: background-color 0.2s;
}

.header__nav-btn:hover {
    background-color: #0079B3 !important;
    color: white !important;
}

/* Hide the planroom navbar on the home page */
.page-home .navbar {
    display: none !important;
}


/* ── About Us full-width blue section with diamond watermark ── */
.about-section {
    background-color: #0079B3;
    border-top: 4px solid rgb(254, 231, 1);
    position: relative;
    overflow: hidden;
    /* bleed out of the .main container padding */
    margin-left: -9999px;
    margin-right: -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Diamond logo watermark */
.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: url(/templates/logo.png) no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
}

.about-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-section__inner h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 24px;
}

.about-section__inner p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-section__inner a {
    color: #ffffff;
    text-decoration: underline;
}

.about-section__inner b {
    font-weight: 700;
}

.about-section__photo {
    float: right;
    width: 160px;
    margin: 0 0 20px 30px;
    border-radius: 4px;
}

.about-section__columns {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 24px;
}

.about-section__text {
    flex: 1;
    min-width: 0;
}

.about-section__text p {
    margin-bottom: 16px;
}

.about-section__video {
    flex: 0 0 420px;
}

.about-section__video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 4px;
    display: block;
}

@media (max-width: 800px) {
    .about-section__video {
        display: none;
    }
}

/* ── Services page buttons ── */
.services-planroom-btns {
    display: flex;
    gap: 14px;
    margin: 24px 0;
}

.services-btn {
    display: inline-block;
    width: 150px;
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    background-color: #0079B3;
    color: #ffffff !important;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.services-btn:hover {
    background-color: rgb(254, 231, 1);
    color: #333333 !important;
}

.services-btn--outline {
    background-color: transparent;
    border: 2px solid #0079B3;
    color: #0079B3 !important;
}

.services-btn--outline:hover {
    background-color: #0079B3;
    color: #ffffff !important;
}

/* ── Footer ── */
.copyright {
    display: none;
}

.footer-wrapper {
    background-color: #222222;
    margin-top: 0;
}

.footer {
    background-color: #222222;
    width: 100%;
    padding: 24px 10px;
    color: #fff;
}

.footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer a {
    color: #cccccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.footer nav a {
    margin-right: 20px;
    font-size: 13px;
}

.footer > div > div {
    font-size: 13px;
    color: #999999;
}