        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
            color: white;
            padding: 120px 0 60px;
            margin-bottom: 0;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .disclosure-document {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            line-height: 1.7;
        }

        .disclosure-document h2 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--tan-color);
            padding-bottom: 0.5rem;
        }

        .disclosure-document h3 {
            color: var(--dark-blue);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .disclosure-document h4 {
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .company-details {
            background: var(--cream-color);
            padding: 2rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        .company-details h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .company-details p {
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .office-info {
            background: var(--gray-light);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        .directors-table {
            background: white;
            border: 1px solid var(--tan-color);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
        }

        .directors-table .row {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--cream-color);
        }

        .directors-table .row:first-child {
            background: var(--primary-color);
            color: white;
            margin: -1.5rem -1.5rem 1rem -1.5rem;
            padding: 1rem 1.5rem;
            border-radius: 10px 10px 0 0;
            border-bottom: none;
        }

        .directors-table .row:last-child {
            border-bottom: none;
        }

        .licenses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .license-item {
            background: var(--cream-color);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }

        .license-item h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-info {
            background: var(--tan-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .contact-info a:hover {
            color: var(--accent-color);
        }

        .document-history {
            background: var(--gray-light);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--accent-color);
        }

        .disclosure-footer {
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            text-align: center;
        }

        .disclosure-footer p {
            margin: 0;
            font-style: italic;
        }

        .disclosure-document ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .disclosure-document li {
            margin-bottom: 0.5rem;
        }

        .disclosure-document p {
            margin-bottom: 1rem;
            color: var(--gray-dark);
        }

        .disclosure-document a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .disclosure-document a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .disclosure-document {
                padding: 2rem;
            }

            .licenses-grid {
                grid-template-columns: 1fr;
            }

            .directors-table .row {
                flex-direction: column;
                text-align: center;
            }

            .directors-table .row:first-child {
                flex-direction: row;
                text-align: left;
            }
        }