:root {
    --brand-primary: #8b4513; 
    --brand-dark: #0f172a; 
    --brand-slate: #64748b; 
    --bg-light-blue: #f1f6fb; 
    --bg-pure-white: #ffffff;
    --corporate-gray: #64748b;
    --header-height: 80px;
    --core-value-card-bg: #ffffff;
}

body {
    font-family: 'Public Sans', 'Inter', sans-serif;
    color: var(--brand-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
}

/* Sleek custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.font-cinzel { font-family: 'Cinzel', serif; }

.nav-link {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    transition: color 0.2s ease;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}
.nav-link:hover { color: #8b4513; }


/* Styles from about-us.html */
/* Sleek custom scrollbar */
        
        
        
        

        /* Navigation Links */
        

        

        /* Value Pillars Card */
        .pillar-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }
        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: var(--brand-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .pillar-card:hover::before {
            transform: scaleX(1);
        }
        .pillar-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -12px rgba(139, 69, 19, 0.15);
            border-color: #d9b382;
        }
        
        /* Modern Factor Cards */
        .factor-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .factor-card:hover {
            box-shadow: 0 15px 35px -5px rgba(139, 69, 19, 0.12);
            transform: translateY(-4px);
            border-color: #e2e8f0;
        }
        .factor-card-header {
            background: linear-gradient(135deg, #5c2e0b 0%, #3e1f08 100%);
            padding: 1.25rem 1.5rem;
            color: #ffffff;
            border-bottom: 3px solid #d9b382; /* Elegant gold/brown accent */
        }
        .factor-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            align-items: flex-start;
            background-color: #fafafa;
        }

/* Styles from contact-us.html */
/* Sleek custom scrollbar */
        
        
        
        

        

        /* Navigation Links */
        
        

        /* Input Form Styles */
        .modern-input {
            width: 100%;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #0f172a;
            font-size: 0.95rem;
            border-radius: 0.75rem;
            padding: 0.85rem 1rem;
            transition: all 0.3s ease;
        }
        .modern-input:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #8b4513;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
        }

        /* Info Card Hover */
        .info-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -6px rgba(139, 69, 19, 0.15);
            border-color: #d9b382;
        }

        /* Auto Scaling to prevent unnecessary space */
        @media (max-width: 1366px) {
            .scale-p { font-size: 0.875rem !important; }
            .scale-title { font-size: 1.25rem !important; }
            .scale-gap { gap: 1rem !important; }
            .modern-input { padding: 0.75rem 1rem; font-size: 0.9rem; }
        }
        @media (max-width: 1280px) {
            .scale-p { font-size: 0.8rem !important; }
            .scale-title { font-size: 1.15rem !important; }
            .scale-gap { gap: 0.75rem !important; }
        }

/* Styles from events-training.html */
/* Sleek custom scrollbar */
        
        
        
        

        

        /* Navigation Links */
        
        

        /* Image Hover Effect */
        .hover-zoom-img {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .hover-zoom-img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px -10px rgba(139, 69, 19, 0.2);
            z-index: 10;
        }

        /* Custom Checkmark List */
        .check-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            color: #475569;
            font-weight: 500;
            line-height: 1.5;
        }
        .check-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #8b4513;
            font-weight: 800;
            font-size: 1.1rem;
        }

/* Styles from index.html */
/* 3D Flip Cards */
        .flip-card {
            background-color: transparent;
            height: 320px;
            perspective: 1000px;
            cursor: pointer;
            display: block;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            top: 0; /* Added to guarantee precise stacking */
            left: 0; /* Added to guarantee precise stacking */
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .flip-card-front {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #1e293b;
        }

        /* Light overlay for images */
        .flip-card-front-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.45);
            z-index: 10;
        }
        
        .flip-card-back {
            background-color: white;
            color: #334155;
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
        }

        .flip-card-back.back-dark {
            background-color: #4a250a;
            color: white;
            border-color: #3e1f08;
        }

        .flip-card-back.back-dark .card-label {
            color: white;
        }

        .flip-card-back.back-dark p {
            color: white;
            opacity: 0.9;
        }

        .flip-card-back.back-dark svg {
            color: white;
        }

        .flip-card-back svg {
            width: 48px;
            height: 48px;
            margin-bottom: 18px;
            color: var(--brand-primary);
        }

        .flip-card-back .card-label {
            font-size: 15px;
            font-weight: 800;
            color: var(--brand-primary);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.4;
        }

        /* Typography Utilities */
        
        

        /* Footer Links & Partners */
        .footer-link {
            font-size: 13px;
            font-weight: 600;
            color: #64748b;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .footer-link:hover {
            color: var(--brand-primary);
        }

        .partner-img {
            max-height: 40px;
            width: auto;
            max-width: 100%;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.4s ease;
            object-fit: contain;
        }

        .partner-link:hover .partner-img {
            filter: grayscale(0);
            opacity: 1;
        }

        /* Smooth Ticker Animation */
        @keyframes ticker-slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .ticker-wrapper {
            display: flex;
            flex-direction: column; /* Stack vertically on mobile */
            align-items: center;
            overflow: hidden;
            width: 100%;
            position: relative;
            background-color: #4a250a; /* Darker main skin */
            border-bottom: 1px solid #2d1605;
            height: auto;
            padding: 0;
        }
        @media (min-width: 768px) {
            .ticker-wrapper {
                flex-direction: row; /* Side-by-side on desktop */
                height: 110px;
            }
        }
        .ticker-track {
            display: flex;
            width: max-content;
            animation: ticker-slide 150s linear infinite; /* Much slower and smoother */
            padding: 1rem 0;
        }
        @media (min-width: 768px) {
            .ticker-track {
                padding: 0;
            }
        }
        .ticker-text {
            font-size: 1.5rem; /* Scaled down for mobile */
            color: #fdf8f5;
            white-space: nowrap;
            font-weight: 800; /* Extra bold */
        }
        @media (min-width: 768px) {
            .ticker-text {
                font-size: 2.25rem; /* 2.25rem font size on larger screens */
            }
        }
        .ticker-title-box {
            position: relative;
            z-index: 20;
            background-color: #1f0f04; /* Even darker background */
            display: flex;
            flex-direction: column; /* Stacked layout for mobile (Logo top, text bottom) */
            align-items: center;
            justify-content: center;
            width: 100%;
            /* Downward pointing tip on mobile */
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
            padding: 1.5rem 1rem 2.5rem 1rem;
            gap: 8px;
        }
        @media (min-width: 768px) {
            .ticker-title-box {
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: auto;
                flex-direction: row; /* Side-by-side layout for desktop */
                /* Right pointing tip on desktop */
                clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
                padding-left: 1.5rem;
                padding-right: calc(1.5rem + 30px);
                padding-top: 0;
                padding-bottom: 0;
                gap: 16px;
            }
        }

/* Styles from lawyersignup.html */
.input-shell {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 0.95rem;
            top: 50%;
            transform: translateY(-50%);
            color: #8b4513;
            font-size: 0.95rem;
            pointer-events: none;
            opacity: 0.9;
        }

        .compact-input {
            width: 100%;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #0f172a;
            font-size: 0.97rem;
            border-radius: 0.9rem;
            padding: 0.98rem 1rem 0.98rem 2.7rem;
            transition: all 0.3s ease;
            min-height: 54px;
        }

        .compact-input:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #8b4513;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
        }

        .portal-main {
            height: calc(100vh - 80px) !important;
        }

        .portal-column {
            height: calc(100vh - 80px) !important;
        }

        .portal-left-inner {
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .portal-form-column {
            height: calc(100vh - 80px) !important;
            overflow: hidden;
        }

        .portal-form-scroll {
            height: 100%;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 0;
        }

        .portal-form-wrap {
            width: 100%;
            max-width: 35.5rem;
            margin: 0 auto;
            padding: 0 0.25rem;
        }

        .portal-form {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .form-grid-two {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.95rem;
        }

        .left-desc {
            max-width: 340px;
        }

        .signup-main-btn {
            width: 70%;
            margin: -0.1rem auto 0;
            display: block;
        }

        .divider-tight {
            margin-top: -0.15rem;
            margin-bottom: -0.15rem;
        }

        .signin-stack {
            margin-top: -0.2rem;
        }

        @media (max-width: 1366px) and (min-width: 1024px) {
            .portal-form-wrap {
                max-width: 33rem;
            }

            .portal-form {
                gap: 0.72rem;
            }

            .compact-input {
                min-height: 50px;
                padding: 0.84rem 0.95rem 0.84rem 2.55rem;
                font-size: 0.92rem;
            }

            .input-icon {
                left: 0.9rem;
                font-size: 0.9rem;
            }

            .signup-main-btn {
                font-size: 0.98rem;
                padding-top: 0.82rem !important;
                padding-bottom: 0.82rem !important;
            }
        }

        @media (max-width: 1280px) and (min-width: 1024px) {
            .portal-form-wrap {
                max-width: 31.5rem;
            }

            .portal-form-scroll {
                padding: 0.7rem 0;
            }

            .compact-input {
                min-height: 47px;
                padding: 0.74rem 0.9rem 0.74rem 2.45rem;
                font-size: 0.89rem;
                border-radius: 0.8rem;
            }

            .signup-main-btn {
                font-size: 0.92rem;
                width: 68%;
                padding-top: 0.74rem !important;
                padding-bottom: 0.74rem !important;
            }
        }

        @media (max-height: 850px) and (min-width: 768px) {
            .portal-form-wrap {
                max-width: 32.5rem;
            }

            .portal-form-scroll {
                align-items: center;
                padding-top: 0.7rem;
                padding-bottom: 0.7rem;
            }

            .portal-form {
                gap: 0.68rem;
            }

            .compact-input {
                min-height: 47px;
                padding: 0.74rem 0.9rem 0.74rem 2.45rem;
                font-size: 0.89rem;
            }

            .signup-main-btn {
                font-size: 0.94rem;
                padding-top: 0.78rem !important;
                padding-bottom: 0.78rem !important;
            }
        }

        @media (max-height: 760px) and (min-width: 768px) {
            .portal-form-wrap {
                max-width: 30.75rem;
            }

            .portal-form-scroll {
                padding-top: 0.55rem;
                padding-bottom: 0.55rem;
            }

            .portal-form {
                gap: 0.58rem;
            }

            .compact-input {
                min-height: 44px;
                padding: 0.66rem 0.85rem 0.66rem 2.35rem;
                font-size: 0.86rem;
            }

            .input-icon {
                font-size: 0.84rem;
                left: 0.82rem;
            }

            .signup-main-btn {
                width: 66%;
                font-size: 0.88rem;
                padding-top: 0.68rem !important;
                padding-bottom: 0.68rem !important;
            }
        }

        @media (max-width: 900px) {
            .form-grid-two {
                grid-template-columns: 1fr;
            }

            .signup-main-btn {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            .portal-main,
            .portal-column,
            .portal-form-column {
                height: auto !important;
            }

            .portal-form-scroll {
                height: auto;
                overflow: visible;
                display: block;
                padding: 0;
            }

            .portal-form-wrap {
                padding: 0;
                max-width: 100%;
            }

            .compact-input {
                min-height: 52px;
            }

            .left-desc {
                max-width: 100%;
            }
        }

/* Styles from lawyerspage.html */
/* Utility classes for variables */
        .bg-light-blue {
            background-color: var(--bg-light-blue);
        }

        .bg-pure-white {
            background-color: var(--bg-pure-white);
        }

        /* Sleek custom scrollbar */
        
        
        
        

        /* Modern Gradient Text - Updated to Brown tones */
        .text-gradient {
            background: linear-gradient(135deg, #5c2e0b 0%, #8b4513 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Cards */
        .value-card {
            background: var(--core-value-card-bg);
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            border-color: #d9b382; /* Lighter brown border on hover */
        }

        .value-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #fdf8f5; /* Very light brown/tan background */
            color: #8b4513; /* Primary brown */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon-box {
            background: #8b4513;
            color: #ffffff;
        }

        /* Subtle Section Backgrounds */
        .bg-pattern {
            background-image: radial-gradient(#2f3235 1px, transparent 1px);
            background-size: 24px 24px;
        }

        /* Navigation Links */
        

        

        /* Navigation Separator */
        .nav-separator {
            width: 1px;
            height: 24px; /* Approx 80% of perceived nav height */
            background-color: #e2e8f0;
            display: inline-block;
        }

/* Styles from mediation-services.html */
/* Member Card Styles */
        .member-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            height: 100%;
        }
        .member-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px -5px rgba(139, 69, 19, 0.12);
            border-color: #d9b382;
        }
        .member-avatar {
            width: 4.5rem;
            height: 4.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #fdf8f5 0%, #fae8d6 100%);
            border: 2px solid #ecd3b6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: #8b4513;
            box-shadow: inset 0 2px 4px rgba(139, 69, 19, 0.05);
        }
        .member-name {
            font-weight: 800;
            color: #1e293b;
            font-size: 1.05rem;
            line-height: 1.3;
            margin-bottom: 0.25rem;
        }
        .member-role {
            font-size: 0.8rem;
            font-weight: 600;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.25rem;
        }
        .profile-btn {
            margin-top: auto;
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            border: 1px solid #8b4513;
            color: #8b4513;
            background-color: transparent;
        }
        .member-card:hover .profile-btn {
            background-color: #8b4513;
            color: #ffffff;
        }

        /* Chairman Special Card */
        .chairman-card {
            border: 2px solid #8b4513;
            background: linear-gradient(180deg, #ffffff 0%, #fdf8f5 100%);
            box-shadow: 0 10px 30px -10px rgba(139, 69, 19, 0.2);
        }
        .chairman-card .member-avatar {
            width: 6rem;
            height: 6rem;
            background: linear-gradient(135deg, #8b4513 0%, #5c2e0b 100%);
            color: white;
            border: none;
        }
        .chairman-card .member-name {
            font-size: 1.5rem;
            color: #5c2e0b;
        }
        .chairman-card .profile-btn {
            background-color: #8b4513;
            color: white;
        }
        .chairman-card:hover .profile-btn {
            background-color: #5c2e0b;
            border-color: #5c2e0b;
        }

        

        

        /* Sleek custom scrollbar */
        
        
        
        

        

        /* Navigation Links */
        
        

        /* Custom List Bullets */
        .custom-bullet li {
            position: relative;
            padding-left: 1.5rem;
        }
        .custom-bullet li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #8b4513;
            font-size: 1.5rem;
            line-height: 1;
            top: -0.1rem;
        }

/* Styles from membership.html */
/* Sleek custom scrollbar */
        
        
        
        

        /* Navigation Links */
        

        

        /* Navigation Separator */
        .nav-separator {
            width: 1px;
            height: 24px; /* Approx 80% of perceived nav height */
            background-color: #e2e8f0;
            display: inline-block;
        }

        /* Modern Checkmark List */
        .benefit-item {
            transition: transform 0.2s ease, background-color 0.2s ease;
        }
        .benefit-item:hover {
            transform: translateX(4px);
            background-color: #fdf8f5;
        }

        /* Terms Card */
        .term-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            height: 100%;
        }
        .term-card:hover {
            box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.1);
            border-color: #d9b382;
            transform: translateY(-2px);
        }

/* Styles from our-clients.html */
/* Sleek custom scrollbar */
        
        
        
        

        

        /* Navigation Links */
        
        

        /* Client Logo Card Styles */
        .client-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 4/3; /* Keeps cards uniformly shaped */
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }
        
        .client-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -5px rgba(139, 69, 19, 0.15);
            border-color: #d9b382;
            z-index: 10;
        }

        .client-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .client-card:hover .client-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

/* Styles from privacy-policy.html */
/* Sleek custom scrollbar */
        
        
        
        

        /* Navigation Links */
        

        

        /* Navigation Separator */
        .nav-separator {
            width: 1px;
            height: 24px;
            background-color: #e2e8f0;
            display: inline-block;
        }

        /* Policy Document Styles */
        .policy-doc h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .policy-doc h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #334155;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .policy-doc p {
            color: #475569;
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .policy-doc ul {
            list-style-type: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: #475569;
        }

        .policy-doc li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Custom marker color for lists */
        .policy-doc ul li::marker {
            color: #8b4513;
        }

/* Styles from terms.html */
/* Sleek custom scrollbar */
        
        
        
        

        /* Navigation Links */
        

        

        /* Navigation Separator */
        .nav-separator {
            width: 1px;
            height: 24px;
            background-color: #e2e8f0;
            display: inline-block;
        }

        /* Policy Document Styles */
        .policy-doc h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .policy-doc h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #334155;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .policy-doc p {
            color: #475569;
            line-height: 1.75;
            margin-bottom: 1rem;
        }

        .policy-doc ul {
            list-style-type: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: #475569;
        }

        .policy-doc li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Custom marker color for lists */
        .policy-doc ul li::marker {
            color: #8b4513;
        }