/* --- 1. GLOBAL RESET & BASE STYLES --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom, #e0f2fe 0%, #f5f3ff 25%, #fff1f2 50%, #fff7ed 75%, #f0fdf4 100%);
    background-attachment: scroll;
    background-size: cover;
    min-height: 100vh;
    color: #1f2933; 
    overflow-x: hidden; 
}

/* --- 2. HEADER & NAVIGATION --- */
.main-header { 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    width: 100%; 
    background: #fff; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.top-announcement-bar { 
    background: #437b82; 
    color: white; 
    padding: 10px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 13px; 
    min-height: 40px; 
}
.announcement-content { display: flex; align-items: flex-start; justify-content: center; max-width: 85%; }
.announcement-text { display: inline-block; text-align: left; line-height: 1.4; }
.top-announcement-bar a:link { color: #10b981; text-decoration: underline; font-weight: 600; }
.top-announcement-bar a:visited { color: #ffffff; text-decoration: underline; }
.top-announcement-bar a:hover { opacity: 0.8; }

.badge { 
    background: #CD2E3A; color: #ffffff; padding: 0 4px; border-radius: 4px; 
    font-weight: bold; margin-right: 15px; display: inline-flex; 
    align-items: center; justify-content: center; height: 18px; 
    line-height: 1; text-transform: uppercase; flex-shrink: 0; font-size: 11px; 
}

.badge2 { 
    background: #0047A0; color: #ffffff; padding: 0 4px; border-radius: 4px; 
    font-weight: bold; display: inline-flex; 
    align-items: center; justify-content: center; height: 18px; 
    line-height: 1; text-transform: uppercase; flex-shrink: 0; font-size: 11px; 
}

.close-announcement { 
    background: transparent; border: none; color: #ffffff; font-size: 22px; 
    font-weight: 300; cursor: pointer; width: 30px; display: flex; 
    justify-content: flex-end; align-items: center; outline: none; 
}

.navbar { 
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-col { 
    flex: 1;
    display: flex;
    justify-content: flex-end; 
    padding-right: 20px; 
}
.logo-col img { height: 33px; display: block; }

.nav-links { 
    display: flex; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    align-items: center; 
    justify-content: center;
    width: 100%;
    max-width: 1200px; 
}

.nav-item { 
    position: relative; 
    padding: 0 18px; 
    height: 80px; 
    display: flex; 
    align-items: center; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.nav-item:hover { 
    transform: translateY(-3px); 
}

.nav-item > a { 
    text-decoration: none; 
    color: #002745; 
    font-weight: 700; 
    font-size: 15px; 
    white-space: nowrap; 
    transition: color 0.3s ease; 
}
.nav-item > a:hover { color: #437b82; }

.dropdown-menu { 
    display: none; 
    position: absolute; 
    top: 80px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #ffffff; 
    width: max-content; 
    min-width: unset; 
    border-top: 3px solid #437b82; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    z-index: 3000;
}

.nav-item:hover .dropdown-menu { 
    display: block; 
    transform: translateX(-50%) translateY(-5px); 
}

.dropdown-menu a { 
    display: block; 
    padding: 12px 25px; 
    text-decoration: none; 
    color: #002745; 
    font-size: 14px; 
    font-weight: 500; 
    text-align: left; 
    white-space: nowrap; 
    border-bottom: none; 
    transition: background 0.2s ease;
}

.dropdown-menu a:hover { background: #f0f7ff; color: #437b82; }

.cta-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 20px; 
}

.btn-cta-box { 
    background: #606569; 
    color: #fff !important; 
    padding: 10px 20px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.3s ease;
}
.btn-cta-box:hover { background: #437b82; }

/* --- 3. DYNAMIC CAROUSEL & SCROLL REVEAL --- */
.reveal { opacity: 0; transition: all 0.8s ease-out; }
.reveal.active-scroll { opacity: 1; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.carousel-container { 
    width: 95%; 
    max-width: 1200px; 
    height: 550px; 
    margin: 0 auto; 
    overflow: hidden; 
    position: relative; 
    border-radius: 30px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
}

.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: flex-end; justify-content: flex-start; z-index: 1; }
.slide.active { opacity: 1; z-index: 10; }
.slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: -1; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top right, rgba(0, 39, 69, 0.9) 0%, rgba(0, 39, 69, 0.2) 50%, transparent 100%); z-index: 2; }

.slide-overlay { position: relative; z-index: 12; color: #fff; padding: 60px; max-width: 650px; text-align: left; }
.slide-overlay h2 { font-size: 42px; margin: 0 0 25px 0; font-weight: 800; line-height: 1.1; }
.slide-overlay p { font-size: 18px; margin: 0 0 25px 0; line-height: 1.4; }

.slide-btn { 
    display: inline-block; background: #10b981; color: #fff !important; 
    padding: 14px 35px; border-radius: 8px; text-decoration: none; 
    font-weight: 700; border: 2px solid transparent; transition: 0.3s; 
}

.carousel-dots {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    z-index: 20; display: flex; gap: 10px;
}
.dot {
    width: 12px; height: 12px; background: rgba(255, 255, 255, 0.4);
    border-radius: 50%; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;
}
.dot:hover { background: rgba(255, 255, 255, 0.8); }
.dot.active { background: #fff; transform: scale(1.2); box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }

/* --- 4. INTRO SECTION --- */
.intro-container { width: 100%; padding: 80px 0; }
.intro-text { max-width: 850px; margin: 0 auto; text-align: center; padding: 0 25px; }
.sub-label { 
    display: inline-block; color: #00aaff; font-weight: 700; letter-spacing: 2px; 
    margin-bottom: 15px; text-transform: uppercase; font-size: 12px; 
    padding: 5px 15px; background: rgba(0, 170, 255, 0.1); border-radius: 20px; 
}
.intro-text h1 { font-size: 44px; color: #002745; margin-bottom: 25px; font-weight: 800; line-height: 1.1; }

/* --- 5. MASTERY CARDS --- */
.content-blocks { padding: 15px 0; width: 100%; } 
.mastery-card { 
    flex: 1; min-width: 320px; padding: 25px 40px; background: #fff; border-radius: 28px; 
    border: 1px solid #f0f0f0; border-top: 5px solid #f0f0f0; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; margin-bottom: 0; 
}
.mastery-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

/* --- 6. FOOTER SITEMAP (RESIZED & UNIFORM) --- */
.footer-sitemap { 
    background: transparent; 
    padding: 35px 20px; 
    margin-top: 30px; 
    border-top: none; 
}

.sitemap-wrapper { 
    display: flex; 
    justify-content: center; 
    align-items: stretch;
    max-width: 1100px; 
    margin: 0 auto; 
    gap: 10px; 
}

.sitemap-box { 
    flex: 1 1 210px; 
    padding: 15px 12px; 
    border-radius: 16px; 
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-top: 3px solid #437b82; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
    display: flex; 
    flex-direction: column; 
    text-align: left; 
}

.sitemap-box:hover { 
    transform: translateY(-6px); 
    background: rgba(255, 255, 255, 0.6); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}

.sitemap-box h4 { 
    margin-bottom: 8px; 
    font-size: 13px; 
    font-weight: 800; 
    color: #002745; 
}

.sitemap-box ul { 
    list-style: none; 
    padding: 0; 
    width: 100%; 
}

.sitemap-box li { 
    margin-bottom: 0px;
}

.sitemap-box a { 
    color: #4b5563; 
    font-size: 11px; 
    text-decoration: none; 
    transition: 0.2s; 
    font-weight: 500;
    white-space: nowrap; 
}

.sitemap-box a:hover { 
    color: #437b82;
    font-weight: 700; 
    text-decoration: underline; 
}

.careers-featured { cursor: pointer; position: relative; } 
.careers-featured p { font-size: 11px; color: #4b5563; line-height: 1.3; margin-bottom: 6px; }

.careers-btn {
    margin-top: auto; 
    background: #437b82; 
    color: #fff; 
    padding: 8px; 
    border-radius: 8px; 
    font-weight: 700; 
    font-size: 9px; 
    text-align: center;
    text-transform: uppercase; 
    width: 100%; 
    border: none;
    transition: background 0.3s ease;
}
.careers-featured:hover .careers-btn { background: #606569; }

.ready-question {
    font-family: 'Roboto', sans-serif !important;
    font-size: 11px !important; 
    font-weight: 600;
    color: #000000;
    margin-top: 10px !important; 
    margin-bottom: 4px;
    display: block;
    line-height: 1.3;
}

/* --- 7. FLY-IN ANIMATIONS --- */
.reveal .fly-left { opacity: 0; transform: translateX(-150px); transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1); }
.reveal .fly-right { opacity: 0; transform: translateX(150px); transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1); }
.reveal .fly-up { opacity: 0; transform: translateY(100px); transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1); }
.reveal.active-scroll .fly-left, .reveal.active-scroll .fly-right, .reveal.active-scroll .fly-up { opacity: 1; transform: translateX(0) translateY(0); }

/* --- 8. MOBILE RESPONSIVENESS & COMPACT HEADER --- */
@media (max-width: 1200px) {
    .sitemap-wrapper { flex-wrap: wrap; }
    .sitemap-box { min-width: 45%; }
}

@media (max-width: 768px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 3000;
    }

    .navbar {
        height: 60px;
    }

    .nav-container { 
        display: flex; 
        padding: 0 15px; 
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-col { justify-content: flex-start; padding: 0; flex: 1; }
    
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        max-height: calc(100vh - 60px); 
        overflow-y: auto; 
        background: #fff; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
        padding: 0; 
        z-index: 2999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        display: block; 
        height: auto;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        transform: none !important; 
    }

    /* MATCHING DESKTOP COLORS: Navy #002745 */
    .nav-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        color: #002745 !important; 
        padding: 18px 25px;
        text-decoration: none;
    }

    /* SUBMENU STYLING */
    .dropdown-menu { 
        display: none;
        position: static; 
        transform: none !important; 
        width: 100%; 
        box-shadow: none;
        border-top: none;
        padding-left: 35px;
        background: #fcfcfc; 
    }

    .nav-item.submenu-active .dropdown-menu {
        display: block !important;
    }

    /* MATCHING DESKTOP COLORS: Slate #4b5563 or Teal #437b82 */
    .dropdown-menu a {
        display: block !important;
        padding: 12px 0 !important;
        color: #4b5563 !important; 
        font-size: 14px !important;
        font-weight: 500;
        text-decoration: none;
    }

    .dropdown-menu a:hover {
        color: #437b82 !important;
    }
}

/* --- 9. Logo Carousel Styling --- */
.logo-slider {
    overflow: hidden;
    padding: 30px 0;
    background: transparent !important;
    white-space: nowrap;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.logo-track {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 45px;
    width: auto;
    margin: 0 40px;
    object-fit: contain;
    mix-blend-mode: multiply; 
    transition: transform 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- 10. Social Media --- */
.footer-bottom-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.copyright {
    font-size: 10px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;    
    color: #64748b;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.social-links-mini {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon {
    display: flex;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-bar {
        padding: 30px 0;
    }
}

/* --- 11. SERVICES HUB STYLING --- */
.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-grid-row {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    width: 100%;
}

.services-grid-row.bottom-row {
    max-width: 100%; 
    margin: 0;
}

.graphic-service-card {
    text-decoration: none !important;
    flex: 0 0 calc(33.333% - 17px); 
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.card-image-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.card-graphic-top {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-image-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 39, 69, 0.15);
    transition: background 0.4s ease;
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.graphic-service-card h3 {
    color: #002745;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.graphic-service-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-cta {
    font-weight: 800;
    color: #0369a1;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: auto;
    letter-spacing: 0.8px;
}

.graphic-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 39, 69, 0.12);
    border-color: rgba(3, 105, 161, 0.2);
}

.graphic-service-card:hover .card-graphic-top {
    transform: scale(1.1);
}

.graphic-service-card:hover .card-image-wrap::after {
    background: rgba(0, 39, 69, 0);
}

.graphic-service-card:hover h3 {
    color: #0369a1;
}

/* --- 12. GLOBAL MENU SUB-PAGES FOUNDATION --- */
.service-detail-page {
    background: transparent !important; 
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #334155;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.service-detail-page section {
    background: transparent !important;
    position: relative;
}

/* --- 13. SERVICE HERO BANNER --- */
.services-hero {
    position: relative;
    height: 350px;
    background: #002745;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    background-color: rgba(0, 39, 69, 0.6);
    background-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 25px;
}

.hero-category {
    display: inline-block;
    background: #437b82;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* --- 14. EDITORIAL LAYOUT & GRID --- */
.editorial-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.editorial-text h2 {
    font-size: 20px;
    font-weight: 800;
    color: #002745;
    margin-bottom: 20px;
    line-height: 1.2;
}

.editorial-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    text-align: justify;
}

/* --- 15. SEAMLESS IMAGE STACK --- */
.image-stack {
    position: relative;
    height: 500px;
}

.img-main {
    width: 90%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 260px;
    object-fit: cover;
    border: none;
    border-radius: 8px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

/* --- 16. THREE COLUMN FEATURETTE --- */
.featurette-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 0;
}

.featurette-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #437b82;
    margin-bottom: 12px;
    font-weight: 800;
}

.featurette-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* --- 17. QUOTE SECTION STYLING --- */
.quote-section {
    padding: 40px 20px 60px 20px;
}

.quote-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* --- 18. GLOBAL BACK LINK --- */
.back-link-container {
    margin-top: 20px;
    text-align: center;
    padding-bottom: 40px;
}

.back-to-services {
    text-decoration: none;
    color: #64748b;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.back-to-services:hover {
    color: #437b82;
}

.back-to-services::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -4px;
    left: 0;
    background-color: #437b82;
    transition: width 0.3s ease;
}

.back-to-services:hover::after {
    width: 100%;
}

/* --- 19. RESPONSIVE ADAPTATIONS --- */
@media (max-width: 1024px) {
    .services-grid-row {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid-row.bottom-row {
        max-width: 100%;
    }

    .hero-title { font-size: 36px; }
    
    .editorial-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    
    .editorial-text h2 { font-size: 32px; }
    
    .image-stack { height: 450px; margin-bottom: 20px; }
    
    .featurette-row { grid-template-columns: 1fr; gap: 25px; }
    
    .quote-text { font-size: 24px; }
}

/* --- 20. HIDE MOBILE-ONLY MENU ITEM ON DESKTOP --- */
.mobile-only-cta {
    display: none !important;
}

/* --- 21. MOBILE SPECIFIC OVERRIDES --- */
@media (max-width: 768px) {
    .cta-col {
        display: none !important;
    }

    .nav-links .mobile-only-cta {
        display: flex !important;           
        justify-content: center !important; 
        background: transparent !important; 
        margin: 20px 0 !important;          
        border-bottom: none !important;     
        padding: 0 !important;
        width: 100% !important;
    }

    .nav-links li.mobile-only-cta a.mobile-cta-link {
        display: inline-block !important;   
        background-color: #606569 !important;
        color: #ffffff !important;           
        -webkit-text-fill-color: #ffffff !important;
        padding: 10px 24px !important;       
        border-radius: 6px !important;       
        font-weight: 700 !important;
        font-size: 13px !important;          
        text-decoration: none !important;
        width: auto !important;              
        transition: background 0.3s ease;
        text-align: center;
        transform: none !important;
    }

    .nav-links li.mobile-only-cta a.mobile-cta-link:hover {
        background-color: #437b82 !important; 
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
}