
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(rgba(5, 15, 25, 0.5), rgba(10, 20, 35, 0.6)), 
                        url('https://mas-client-portal.com/wp-content/themes/twentytwentyfour-child/assets/images/backgrounds/background.jpg') no-repeat center center fixed;
            background-size: cover;
            min-height: 100vh;
            color: #e2e8f0;
            font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            margin: 0;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }

        /* Main Header Card */
        .header-card {
            background: rgba(15, 25, 40, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 50px 0;
            text-align: center;
            border: 1px solid rgba(111, 238, 252, 0.2);
            border-radius: 16px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(111, 238, 252, 0.1);
            margin-bottom: 40px;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            position: relative;
        }

        /* Circular Logo Style */
        .logo-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(5px);
        }

        .markets-logo {
            background: linear-gradient(145deg, rgba(110, 237, 252, 0.2), rgba(110, 237, 252, 0.1));
            border: 2px solid rgba(110, 237, 252, 0.4);
            box-shadow: 0 8px 25px rgba(110, 237, 252, 0.35),
                        0 0 40px rgba(110, 237, 252, 0.15),
                        inset 0 2px 10px rgba(110, 237, 252, 0.1);
        }

        .digital-logo {
            background: linear-gradient(145deg, rgba(247, 135, 1, 0.2), rgba(247, 135, 1, 0.1));
            border: 2px solid rgba(247, 135, 1, 0.4);
            box-shadow: 0 8px 25px rgba(247, 135, 1, 0.35),
                        0 0 40px rgba(247, 135, 1, 0.15),
                        inset 0 2px 10px rgba(247, 135, 1, 0.1);
        }

        @keyframes pulse {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.5;
                transform: scale(1.05);
            }
        }

        .pulsing-ring {
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .markets-logo .pulsing-ring {
            border-color: rgba(110, 237, 252, 0.3);
        }

        .digital-logo .pulsing-ring {
            border-color: rgba(247, 135, 1, 0.3);
        }

        .logo-text {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .markets-text {
            color: #6eedfc;
            text-shadow: 0 0 20px rgba(110, 237, 252, 0.3);
        }

        .digital-text {
            color: #f78701;
            text-shadow: 0 0 20px rgba(247, 135, 1, 0.3);
        }

        .logo-image {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: contain;
            position: relative;
            z-index: 1;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .markets-logo .logo-image {
            background: rgba(110, 237, 252, 0.15);
        }

        .digital-logo .logo-image {
            background: rgba(247, 135, 1, 0.15);
        }

        h1 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: 1px;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .subtitle {
            font-size: 14px;
            color: #a0aec0;
            max-width: 600px;
            margin: 0 auto;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Navigation Tabs */
        .nav-tabs {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            gap: 20px;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .nav-tab {
            padding: 15px 35px;
            background: rgba(15, 25, 40, 0.85);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #cbd5e1;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .nav-tab:hover {
            transform: translateY(-2px);
        }

        .nav-tab.active {
            background: linear-gradient(145deg, rgba(110, 237, 252, 0.15), rgba(110, 237, 252, 0.05));
            border-color: rgba(110, 237, 252, 0.4);
            color: #6eedfc;
            box-shadow: 0 4px 15px rgba(110, 237, 252, 0.3);
        }

        .nav-tab.digital.active {
            background: linear-gradient(145deg, rgba(247, 135, 1, 0.15), rgba(247, 135, 1, 0.05));
            border-color: rgba(247, 135, 1, 0.4);
            color: #f78701;
            box-shadow: 0 4px 15px rgba(247, 135, 1, 0.3);
        }

        /* Content Sections */
        .content-section {
            display: none;
        }

        .content-section.active {
            display: block;
        }

        /* Privacy Content Card */
        .privacy-content {
            background: rgba(15, 25, 40, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(111, 238, 252, 0.2);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(111, 238, 252, 0.1);
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .digital-content {
            border-color: rgba(247, 135, 1, 0.2);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(247, 135, 1, 0.1);
        }

        /* Section Header */
        .section-header {
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(135deg, rgba(110, 237, 252, 0.08) 0%, transparent 100%);
            border-radius: 12px 12px 0 0;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6eedfc, #4dd4e6, #6eedfc);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
            border-radius: 12px 12px 0 0;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .digital-header {
            background: linear-gradient(135deg, rgba(247, 135, 1, 0.08) 0%, transparent 100%);
        }

        .digital-header::before {
            background: linear-gradient(90deg, #f78701, #ff9e20, #f78701);
        }

        .section-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .markets-title {
            color: #6eedfc;
            text-shadow: 0 0 20px rgba(110, 237, 252, 0.3);
        }

        .digital-title {
            color: #f78701;
            text-shadow: 0 0 20px rgba(247, 135, 1, 0.3);
        }

        .section-subtitle {
            font-size: 14px;
            color: #a0aec0;
        }

        /* Privacy Section Styling */
        .privacy-section {
            margin-bottom: 35px;
            padding: 25px;
            background: rgba(20, 35, 55, 0.3);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .privacy-section:last-child {
            margin-bottom: 0;
        }

        .privacy-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .markets-section h3 {
            color: #6eedfc;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .digital-section h3 {
            color: #f78701;
        }

        .privacy-section p {
            margin-bottom: 20px;
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.7;
            font-family:'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .privacy-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }

        .privacy-section li {
            margin-bottom: 12px;
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.6;
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .markets-highlight {
            border-left-color: #6eedfc;
            background: linear-gradient(90deg, rgba(110, 237, 252, 0.1), transparent);
        }

        .digital-highlight {
            border-left-color: #f78701;
            background: linear-gradient(90deg, rgba(247, 135, 1, 0.1), transparent);
        }

        /* View More Button */
        .view-more-container {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .view-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .view-more-btn:hover::before {
            left: 100%;
        }

        .markets-btn {
            background: linear-gradient(135deg, rgba(110, 237, 252, 0.15), rgba(110, 237, 252, 0.05));
            border: 2px solid rgba(110, 237, 252, 0.4);
            color: #6eedfc;
            box-shadow: 0 4px 15px rgba(110, 237, 252, 0.2);
        }

        .markets-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(110, 237, 252, 0.3);
            border-color: #6eedfc;
        }

        .digital-btn {
            background: linear-gradient(135deg, rgba(247, 135, 1, 0.15), rgba(247, 135, 1, 0.05));
            border: 2px solid rgba(247, 135, 1, 0.4);
            color: #f78701;
            box-shadow: 0 4px 15px rgba(247, 135, 1, 0.2);
        }

        .digital-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(247, 135, 1, 0.3);
            border-color: #f78701;
        }

        .pdf-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .external-icon {
            width: 14px;
            height: 14px;
            margin-left: 5px;
            fill: currentColor;
            opacity: 0.7;
        }

        /* Footer - Fixed Inline Layout */
        footer {
            background: rgba(15, 25, 40, 0.85);
            backdrop-filter: blur(15px);
            padding: 25px 0;
            text-align: center;
            border: 1px solid rgba(111, 238, 252, 0.2);
            border-radius: 12px;
            margin-top: 60px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap;
        }

        .footer-divider {
            color: #4a5568;
            margin: 0 10px;
        }

        .copyright {
            color: #94a3b8;
            font-size: 13px;
            display: inline;
        }

        .footer-links {
            display: inline-flex;
            gap: 25px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
            font-size: 13px;
        }

        .footer-links a:hover {
            color: #6eedfc;
        }

        /* Hover Effects */
        .logo-circle:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: column;
                gap: 15px;
            }

            .footer-divider {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                max-width: 100%;
            }

            .logo-container {
                flex-direction: column;
                gap: 40px;
            }

            .nav-tabs {
                flex-direction: column;
                align-items: center;
            }

            .nav-tab {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .privacy-content {
                padding: 30px 20px;
            }
        }
 