:root {
        --bg: #f5f4f0;
        --surface: #ffffff;
        --border: #e2e0d8;
        --text-primary: #1a1916;
        --text-secondary: #6b6860;
        --accent-green: #00B68B;
        --accent-green-light: #e8f0eb;
        --accent-blue: #00B68B;
        --accent-blue-light: #e6ecf4;
        --accent-amber: #00B68B;
        --accent-amber-light: #f5ede3;
        --tag-bg: #f0ede6;
        --rule: #ccc9be;
}
.legal-innerpage h1{
    margin-bottom: 30px;
    font-size:24px;
    font-weight: bold;
}
.legal-innerpage h2,
.legal-innerpage h3,
.legal-innerpage h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.legal-innerpage ul{
    padding: 0 0 0 20px;
}
.legal-innerpage ul li{
    margin-bottom: 10px;
    list-style: disc;
}
a{
    color: #00b68b;
}
.legal-innerpage ul li{
    border-bottom: 1px solid #e9e7e7;
}
 /* Section titles */
        .section-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        }

        .section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
        }

        /* Cards */
        .card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 28px 32px;
        margin-bottom: 16px;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 1px 10px #dfdfdf !important;
        }

        .card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.07);
        transform: translateY(-2px);
        }

        .card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 4px;
        height: 100%;
        border-radius: 12px 0 0 12px;
        }

        .card.green::before  { background: #00B68B; }
        .card.blue::before   { background: #00B68B }
        .card.amber::before  { background: #00B68B }

        .card-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 20px;
        }

        .card-title-group {}

        .card-tag {
        display: inline-block;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 3px 9px;
        border-radius: 99px;
        margin-bottom: 6px;
        }

        .green .card-tag  { background: var(--accent-green-light); color: #00B68B; }
        .blue .card-tag   { background: var(--accent-green-light); color: #00B68B; }
        .amber .card-tag  { background: var(--accent-green-light); color: #00B68B;}

        .card-name {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: var(--text-primary);
        }

        .card-badge {
        font-size: 11px;
        font-weight: 500;
        color: var(--text-secondary);
        background: var(--tag-bg);
        padding: 4px 10px;
        border-radius: 6px;
        white-space: nowrap;
        flex-shrink: 0;
        }

        /* Info grid */
        .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
        }

        .info-item {
        display: flex;
        flex-direction: column;
        gap: 3px;
        }

        .info-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-secondary);
        }

        .info-value {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.5;
        }

        .info-value a {
        color: inherit;
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        transition: border-color 0.15s;
        }

        .info-value a:hover {
        border-color: var(--text-primary);
        }

        /* Regulatory section */
        .regulatory-section {
        margin-top: 56px;
        }

        .reg-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 16px;
        }

        .reg-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 22px 26px;
        transition: box-shadow 0.2s ease;
        }

        .reg-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }

        .reg-state {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border);
        }

        .reg-body-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 10px;
        line-height: 1.4;
        }

        .reg-detail {
        font-size: 12px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.65;
        }

        .reg-detail a {
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        font-weight: 500;
        transition: border-color 0.15s;
        }

        .reg-detail a:hover { border-color: var(--text-primary); }

        /* Open Payments notice */
        .notice-bar {
        margin-top: 20px;
        background: #fffdf5;
        border: 1px solid #e8dfc8;
        border-radius: 10px;
        padding: 18px 24px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        }

        .notice-icon {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
        }

        .notice-text {
        font-size: 12.5px;
        color: var(--text-secondary);
        line-height: 1.65;
        }

        .notice-text strong {
        color: var(--text-primary);
        font-weight: 600;
        }

        .notice-text a {
        color: #00B68B;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #e8dfc8;
        }

        /* Divider */
        .section-spacer { margin-bottom: 40px; }

        @media (max-width: 767px) {
            button.navbar-toggler1{
                display: none !important;
            }
            .header-inner{
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .card { padding: 22px 20px; }
            .card-header { flex-direction: column; }
            .reg-grid { grid-template-columns: 1fr; }
        }

        