﻿/* Font Imports */
@font-face {
    font-family: 'Outfit';
    src: url('/content/Outfit-SemiBold.otf') format('opentype');
    font-weight: 600;
}
@font-face {
    font-family: 'Outfit';
    src: url('/content/Outfit-Medium.otf') format('opentype');
    font-weight: 500;
}
body{overflow-x: hidden;}
header {
    background-color: #ffffff;
    padding: 1rem 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eaeaea;
    position:relative;
    z-index:9999;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

header nav > a img {
    max-width: 220px;
    height: auto;
    display: block;
}

header ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

header ul li a, 
header ul li button {
    text-decoration: none;
    color: #0b3d32; /* Dark green color from the image */
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-family: inherit;
    transition: color 0.2s ease;
}

/* Home active link color */
header ul > li:first-child > a {
}

header ul li a:hover,
header ul li button:hover {
    color: #34d399;
}

/* Dropdown styling */
header ul li {
    position: relative;
}

header ul li button::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background-color: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transform: translateY(2px);
}

/* Dropdown Menu */
header ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 10px;
}

header ul li ul li a {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    text-transform: capitalize;
}

header ul li ul li a:hover {
    background-color: #f8f9fa;
}

/* "Lets Talk" Button */
header nav > a[href^="tel:"] {
    background-color: #1a2a36; /* Dark slate blue */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

header nav > a[href^="tel:"]:hover {
    background-color: #273b4d;
}

/* Phone Icon using a data URI */
header nav > a[href^="tel:"]::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%2334d399"><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Footer temporary simple styling to keep it clean */
footer {
    background-color: #1a2a36;
    color: #ffffff;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

footer section {
    flex: 1;
    min-width: 250px;
}

footer h2, footer h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #34d399;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #34d399;
    text-decoration: underline;
}

footer address {
    font-style: normal;
}

/* Responsive Styles */
#mobile-menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0b3d32;
    padding: 5px;
}

@media (max-width: 1100px) {
    header {
        padding: 1rem;
    }
    header ul {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    #mobile-menu-toggle {
        display: block;
    }
    
    header nav {
        flex-wrap: wrap;
    }
    
    header ul#primary-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        align-items: flex-start;
        gap: 1rem;
    }
    
    header ul#primary-navigation.nav-open {
        display: flex;
    }
    
    header ul li ul {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        display: none;
    }
    
    /* Reveal the dropdown when clicked (handled via inline JS on button) */
    header ul li button:focus + ul,
    header ul li button:active + ul {
        display: flex;
    }
    
    header nav > a[href^="tel:"] {
        margin-left: auto;
        margin-right: 15px;
    }
    
    footer {
        flex-direction: column;
        padding: 2rem 1rem;
    }
}
header nav {
    position: relative;
}

/* Skip Link Accessibility */
.skip-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    background-color: #125e77;
    color: #ffffff !important;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.skip-link:focus {
    transform: translateX(-50%) translateY(20px);
    opacity: 1;
    outline: none;
}

/* Footer specific exact matching */
footer {
    background-color: #1a2a36;
    color: #ffffff;
    padding: 4rem 3rem 2rem;
    display: block; /* Override previous flex */
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col-1 h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col-1 p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
}

.footer-main h3 {
    color: #34d399;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 1rem;
}

.footer-main a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-main a:hover {
    color: #34d399;
    text-decoration: underline;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #34d399;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
}

.contact-icon.phone-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1a2a36;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg>');
    -webkit-mask-size: 14px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.contact-icon.email-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1a2a36;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg>');
    -webkit-mask-size: 14px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.footer-secondary {
    max-width: 1400px;
    margin: 2rem auto 0;
}

.footer-disclosures p {
    font-size: 11px;
    color: #e2e8f0;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-alert h3 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.footer-alert p {
    font-size: 12px;
    color: #cbd5e1;
}

.footer-useful {
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-useful h3 {
    color: #34d399;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-useful ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-useful a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-useful a:hover {
    color: #34d399;
    text-decoration: underline;
}

.footer-copyright {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.footer-copyright p:first-child {
    margin-right: auto;
}

.footer-copyright p:nth-child(2) {
    margin-right: 15px;
}

.footer-copyright ul {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-copyright ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #34d399;
    border-radius: 50%;
    font-size: 0; /* Hides the original text */
    color: transparent;
    position: relative;
    transition: background-color 0.2s;
}

.footer-copyright ul li a:hover {
    background-color: #ffffff;
}

.footer-copyright ul li a::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1a2a36;
    -webkit-mask-size: 16px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

/* Facebook Icon */
.footer-copyright ul li a[href*="facebook"]::after {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M80 299.3V512H196V299.3h86.5l18-97.8H196V166.9c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4 .4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8H80z"/></svg>');
}

/* Instagram Icon */
.footer-copyright ul li a[href*="instagram"]::after {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

/* X (Twitter) Icon */
.footer-copyright ul li a[href*="x.com"]::after {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>');
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* Custom Hero Section */
.custom-hero-section {
    background-color: #1a2a36;
    position: relative;
    overflow: hidden;
    padding: 6rem 3rem 4rem; /* Adjusted padding */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.8; /* Higher opacity */
    pointer-events: none;
}

.hero-bg-shape-1 {
    top: -10%;
    left: -5%;
    height: 120%;
    object-fit: contain;
}

.hero-bg-shape-2 {
    top: -50px;
    right: -50px;
    width: 400px;
}

.hero-bg-shape-3 {
    bottom: -10%;
    right: -5%;
    height: 60%;
}

.hero-bg-shape-4 {
    bottom: -50px;
    left: -50px;
    width: 300px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    gap: 3rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-left: 2rem;
}

.hero-badge {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border: 2px solid #34d399; /* Hollow circle with border */
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    inset: 4px;
    background-color: #34d399; /* Green checkmark inside */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.hero-content h1 {
    color: #34d399;
    font-size: 4.5rem; /* Larger font */
    font-weight: 800; /* Thicker font */
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 2.5rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #34d399;
    color: #0b3d32;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2ebc89;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

.hero-image-wrapper {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.main-hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 992px) {
    .custom-hero-section {
        padding: 5rem 2rem 4rem;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    .hero-content {
        padding-left: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-badge {
        margin: 0 auto 1.5rem auto;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero-image-wrapper {
        justify-content: center;
        width: 100%;
    }
    .hero-bg-shape-2, .hero-bg-shape-4 {
        display: none; /* Hide huge shapes on mobile to keep it clean */
    }
}

@media (max-width: 576px) {
    .custom-hero-section {
        padding: 4rem 1.5rem 3rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Hide old bloated Elementor section */
.home-sec-2 {
    display: none !important;
}

/* Who We Are Section */
.who-we-are-section {
    background-color: #f8f9fa;
    padding: 8rem 3rem;
    display: flex;
    justify-content: center;
}

.who-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    gap: 6rem;
    width: 100%;
}

.who-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.who-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.who-content-col {
    flex: 1;
    max-width: 600px;
}

.who-badge {
    display: inline-block;
    background-color: #bcf0da;
    color: #1a2a36;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.who-content-col h2 {
    color: #1a2a36;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.who-content-col p {
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    font-weight: 400;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: #1a2a36;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #273b4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 42, 54, 0.2);
}

@media (max-width: 1200px) {
    .who-container {
        gap: 3rem;
    }
    .who-content-col h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .who-we-are-section {
        padding: 5rem 2rem;
    }
    .who-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .who-content-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .who-we-are-section {
        padding: 4rem 1.5rem;
    }
    .who-content-col h2 {
        font-size: 2.2rem;
    }
    .who-content-col p {
        font-size: 1rem;
    }
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

 /* Unique Modal Container */
        .risk-modal-overlay-2026 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            animation: risk-modal-fade-in-2026 0.3s ease;
        }

        /* Unique Modal Box */
        .risk-modal-box-2026 {
            background: #ffffff;
            max-width: 70%;
            width: 100%;
            padding: 40px 45px 35px;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: risk-modal-slide-up-2026 0.3s ease;
        }

        /* Unique Heading */
        .risk-modal-heading-2026 {
         font-size: 26px;
         font-weight: 700;
         color: #0b3d32;
         margin: 0 0 20px 0;
         padding-bottom: 15px;
         border-bottom: 3px solid #0b3d32;
         text-align: center;
         letter-spacing: 0.5px;
        }

        /* Unique Content List */
        .risk-modal-list-2026 {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .risk-modal-list-2026 li {
            font-size: 16px;
            line-height: 1.6;
            color: #2c3e50;
            padding: 10px 0 10px 30px;
            position: relative;
            border-bottom: 1px solid #ecf0f1;
        }

        .risk-modal-list-2026 li:last-child {
            border-bottom: none;
        }

        .risk-modal-list-2026 li::before {
            content: "⚠️";
            position: absolute;
            left: 0;
            top: 10px;
            font-size: 18px;
        }

        /* Unique Source Text */
        .risk-modal-source-2026 {
            /* font-size: 13px; */
            color: #000000;
            background: #ffffff;
            padding: 15px 18px;
            border-radius: 6px;
            margin: 15px 0 25px 0;
            /* font-style: italic; */
            border-left: 4px solid #0b3d32;
        }

        /* Unique Button Container */
        .risk-modal-button-wrap-2026 {
            text-align: center;
        }

        /* Unique Button */
        .risk-modal-btn-2026 {
        background: #0b3d32;
        color: #ffffff;
        border: none;
        padding: 14px 50px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        }

        .risk-modal-btn-2026:hover {
            background: #0b3d32;
            transform: translateY(-2px);
        }

        .risk-modal-btn-2026:focus {
            outline: 3px solid #34ea93;
            outline-offset: 2px;
        }

        /* Unique Close Icon */
        .risk-modal-close-2026 {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #0b3d32;
            cursor: pointer;
            background: none;
            border: none;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .risk-modal-close-2026:hover {
            color: #0b3d32;
        }

        .risk-modal-close-2026:focus {
            outline-offset: 2px;
        }

        /* Unique Animations */
        @keyframes risk-modal-fade-in-2026 {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes risk-modal-slide-up-2026 {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Unique Responsive */
        @media (max-width: 600px) {
            .risk-modal-box-2026 {
                padding: 25px 20px 25px;
                width: 95%;
            }

            .risk-modal-heading-2026 {
                font-size: 20px;
            }

            .risk-modal-list-2026 li {
                font-size: 14px;
                padding: 8px 0 8px 28px;
            }

            .risk-modal-btn-2026 {
                padding: 12px 35px;
                font-size: 16px;
            }

            .risk-modal-close-2026 {
                font-size: 24px;
                top: 10px;
                right: 15px;
            }
        }

        /* Unique Hidden State */
        .risk-modal-hidden-2026 {
            display: none !important;
        }