.page-header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 60px 0;
            margin-bottom: 0;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .breadcrumb {
            background: transparent;
            margin: 0;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--white);
        }

        .disclosure-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
        }

        .disclosure-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .disclosure-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .disclosure-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
        }

        .disclosure-header h4 {
            color: var(--dark-color);
            margin: 0;
            font-weight: 600;
        }

        .disclosure-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .disclosure-item:last-child {
            border-bottom: none;
        }

        .item-title {
            color: var(--dark-color);
            font-weight: 500;
            flex: 1;
        }

        .item-value {
            color: var(--gray);
            text-align: right;
            flex: 1;
        }

        .compliance-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .compliance-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .compliance-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--white);
        }

        .compliance-card h5 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .compliance-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .approval-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .approval-number,
        .approval-date {
            font-size: 0.9rem;
            color: var(--primary-color);
            font-weight: 500;
        }

        .document-card {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }

        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .document-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.3rem;
            color: var(--white);
        }

        .document-card h6 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .document-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .contact-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-color);
        }

        .contact-card h4 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-card p {
            color: var(--gray);
            margin: 0;
        }

        @media (max-width: 768px) {
            .disclosure-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .disclosure-item {
                flex-direction: column;
                gap: 5px;
            }
            
            .item-value {
                text-align: left;
            }
            
            .contact-card .row {
                text-align: center;
            }
            
            .contact-card .col-lg-4 {
                margin-top: 20px;
            }
        }