        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        body {
            background-color: #f9f9ff;
            color: #111c2d;
        }
        .tonal-elevation {
            box-shadow: 0 4px 20px rgba(45, 92, 136, 0.08);
        }
        
        
        /* --- Brand Colors & Base Styles --- */
        :root {
            --primary-blue: #0b4d7c;
            --accent-gold: #c59b27;
            --text-dark: #333333;
            --bg-light: #f8fafc;
            --white: #ffffff;
        }

        /* --- Trigger Button (Styled like your image) --- */
        .services-btn {
            background-color: var(--white);
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            font-family: 'Public Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .services-btn:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        /* --- Modal Backdrop --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(11, 77, 124, 0.4); /* Subtle brand-tinted overlay */
            backdrop-filter: blur(4px); /* Modern blur effect */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            
            /* Hidden by default */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        /* --- Modal Box --- */
        .modal-box {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            width: 90%;
            max-width: 550px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            
            /* Animation Starting State (Scaled down) */
            transform: scale(0.9) translateY(10px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- Subtle Elegant Motion Graphics State --- */
        .modal-overlay.is-active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-overlay.is-active .modal-box {
            transform: scale(1) translateY(0);
        }

        /* --- Close Button (X) --- */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #888;
            cursor: pointer;
            line-height: 1;
            padding: 5px;
            transition: color 0.2s ease;
        }

        .modal-close:hover {
            color: var(--accent-gold);
        }

        /* --- Popup Typography Hierarchy --- */
        .modal-title {
            font-family: 'Merriweather', serif; /* Matching the serif headline vibe */
            color: var(--primary-blue);
            font-size: 32px;
            margin-top: 0;
            margin-bottom: 24px;
            text-transform: lowercase; /* Matches your exact request "our services" */
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 8px;
            display: inline-block;
        }

        .services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .services-list li {
            font-size: 22px;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 12px;
            position: relative;
            padding-left: 24px;
        }

        /* Elegant bullet point using the brand gold color */
        .services-list li::before {
            content: "•";
            color: var(--accent-gold);
            font-size: 24px;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
        
            
        .mobile-pay-btn { display: none; }
        
        
    @media screen and (max-width: 768px) { 
    
    #logo-wrapper {
        margin-left:-5px;
    }
    
    .mobile-pay-btn { 
        
        display: block; 
        align-items: center; gap: 6px; 
        background-color: #2D5C88; 
        color: white; 
        padding: 6px 12px; 
        margin-left:20px;
        border-radius: 6px; 
        text-decoration: none; 
        
        width: fit-content; 
        transition: opacity 0.2s; 
        
        /*font-family: 'Noto Serif', serif !important;*/
        /*font-size: 14px !important;*/
        /*font-weight: 500 !important;*/
        /*line-height: 1.25 !important;*/
        
    } 
        
        .mobile-pay-btn .btn-icon { 
            
            width: 18px; height: 18px; 
            
        } 
            
            
        .desktop-pay-btn { 
                
            display: none !important; }  
        
        .mobile-pay-btn { 
            
            display: inline-flex !important; } 
            
        
    
    .desktop-pay-btn {
        display: none;
    }

    
    #hero-subtext { 
        
        font-size: 2.125rem !important; 
        line-height: 1.6 !important;
        
    }
     
    
    }
    
    
    /* Back to Top Button Styling */
        .back-to-top {
          position: fixed;
          bottom: 2rem;
          right: 2rem;
          width: 48px;
          height: 48px;
          border-radius: 50%;
          background: linear-gradient(135deg, #D4A574 0%, #C89968 100%);
          border: none;
          color: white;
          cursor: pointer;
          display: none;
          align-items: center;
          justify-content: center;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
          z-index: 999;
          font-size: 0;
        }
        
        .back-to-top:hover {
          background: linear-gradient(135deg, #E5B88B 0%, #D9A876 100%);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          transform: translateY(-4px);
        }
        
        .back-to-top.show {
          display: flex;
        }
        
        .back-to-top svg {
          width: 24px;
          height: 24px;
        }
        
         
         .extra-padding { 
             padding: 0 2% !important; 
         }
        