        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Manrope', system-ui, -apple-system, sans-serif;
            background: var(--page-bg);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 1.25rem 3rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        /* Topbar / Navigation (Direct from public_portal.html) */
        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.25rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
            position: sticky;
            top: 0.75rem;
            z-index: 100;
            max-width: 1200px;
            margin: 0.75rem auto 0;
            width: calc(100% - 2.5rem);
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 0;
        }

        .nav-logo {
            height: 40px;
            width: auto;
            display: block;
            flex: 0 0 auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }

        .nav-link {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            color: var(--primary-strong);
        }

        .btn-portal {
            background: var(--primary);
            color: white !important;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 79, 159, 0.1);
        }

        .btn-portal:hover {
            background: var(--primary-strong);
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(0, 79, 159, 0.2);
        }

        /* Hero Section (Adapted for B2B Content) */
        .hero {
            background: linear-gradient(135deg, #0a2540 0%, #004f9f 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
            border-radius: var(--radius);
            box-shadow: var(--shadow-hover);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            margin: 0 0 1.25rem 0;
            letter-spacing: -0.5px;
            line-height: 1.25;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero p {
            font-size: 1.05rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #ffffff;
            color: var(--primary-strong) !important;
            padding: 0.85rem 1.75rem;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: #f8fafc;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white !important;
            padding: 0.85rem 1.75rem;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 700;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.2s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Section Headings */
        .section-header {
            margin-bottom: 2.25rem;
            border-bottom: 3px solid var(--primary-soft);
            padding-bottom: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: var(--primary-strong);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
        }

        /* Cards Layout (From public_portal.html) */
        .card {
            background: var(--bg-alt);
            border-radius: var(--radius);
            padding: 1.75rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all 0.25s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 79, 159, 0.18);
        }

        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            border-bottom: 2px solid var(--primary-soft);
            padding-bottom: 0.5rem;
        }

        .card-title {
            font-family: "Poppins", system-ui;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-strong);
        }

        .tag {
            font-size: 0.72rem;
            padding: 0.25rem 0.75rem;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-strong);
            border: 1px solid rgba(0, 79, 159, 0.15);
            white-space: nowrap;
            font-weight: 700;
        }

        .rows {
            list-style: none;
            display: grid;
            gap: 0.85rem;
        }

        .row-item {
            background: var(--bg);
            padding: 1.15rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
        }

        .row-icon {
            font-size: 1.25rem;
            line-height: 1;
            background: var(--bg-alt);
            padding: 0.4rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            color: var(--primary);
        }

        .row-text strong {
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--primary-strong);
            display: block;
            margin-bottom: 0.2rem;
        }

        .row-text span {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.45;
            display: block;
        }

        /* Side-by-side grid */
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
        }

        /* Compliance badge container */
        .compliance-badge-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(244,246,251,0.9) 100%);
            border: 2px dashed var(--primary-soft);
            padding: 3rem 2rem;
        }

        .compliance-logo-box {
            font-family: "Poppins", system-ui;
            font-size: 2.75rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.75rem;
            filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.15));
        }

        .compliance-badge-title {
            font-size: 0.85rem;
            color: var(--primary-strong);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .compliance-badge-desc {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.5;
            max-width: 320px;
        }

        /* Features/Services Grid (Light Theme Card matching) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .feature-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-soft);
            color: var(--primary);
            border: 1px solid rgba(0, 79, 159, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
            box-shadow: 0 4px 10px rgba(0, 79, 159, 0.03);
        }

        .feature-card h4 {
            font-family: "Poppins", sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-strong);
        }

        .feature-card p {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        /* Contact & Quote Form Side-by-side */
        .contact-layout {
            display: grid;
            grid-template-columns: 4fr 5fr;
            gap: 2rem;
            align-items: stretch;
        }

        .contact-info-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.5rem;
        }

        .contact-info-card h3 {
            font-family: "Poppins", sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-strong);
        }

        .contact-info-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .contact-detail-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--bg);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .contact-detail-text h5 {
            font-size: 0.72rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
        }

        .contact-detail-text p {
            font-size: 0.9rem;
            color: var(--text);
            margin: 0;
            font-weight: 600;
        }

        /* Interactive Form Card */
        .contact-form-card {
            position: relative;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .form-group label {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary-strong);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            color: var(--text);
            font-family: inherit;
            font-size: 0.88rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 79, 159, 0.12);
            background: var(--bg-alt);
        }

        .btn-submit {
            background: var(--primary);
            color: white;
            border: 1px solid rgba(0, 79, 159, 0.1);
            padding: 0.85rem 1.5rem;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 79, 159, 0.15);
            margin-top: 0.5rem;
            text-align: center;
        }

        .btn-submit:hover {
            background: var(--primary-strong);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0, 79, 159, 0.25);
        }

        /* Success Overlay */
        .form-success-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            z-index: 10;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            transform: scale(0.97);
        }

        .form-success-overlay.active {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1);
        }

        .success-checkmark {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--success-soft);
            color: var(--success);
            border: 2px solid var(--success);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.25rem;
            animation: pulse-success 2s infinite;
        }

        @keyframes pulse-success {
            0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
            100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 2rem;
            background-color: var(--primary-strong);
            color: #ffffff;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: auto;
        }

        footer p {
            margin: 0;
            opacity: 0.85;
            font-weight: 500;
        }

        footer a {
            color: #93c5fd;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        footer a:hover {
            color: #ffffff;
        }

        /* Responsive Layouts */
        @media (max-width: 900px) {
            .grid-2col {
                grid-template-columns: 1fr;
            }
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .topbar {
                width: calc(100% - 1.5rem);
            }
            .nav-links {
                display: none;
            }
            .hero h2 {
                font-size: 1.85rem;
            }
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            .hero-actions {
                flex-direction: column;
                gap: 0.75rem;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }
