/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Container */
        .disclosure-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 20px;
            text-align: center;
            flex: 1;
        }
        
        /* Logo Section */
        .logo-section {
            margin-bottom: 50px;
        }
        
        .logo {
            max-width: 250px;
            height: auto;
            display: inline-block;
        }
        
        /* Content Section */
        .content-section {
            margin-bottom: 40px;
        }
        
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c61be;
            margin-bottom: 30px;
        }
        
        .disclosure-text {
            font-size: 1.1rem;
            color: #555555;
            margin-bottom: 20px;
            text-align: left;
            line-height: 1.8;
        }
        
        .disclosure-text.center {
            text-align: center;
        }
        
        /* Links Section */
        .links-section {
            margin-top: 50px;
        }
        
        .links-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1c61be;
            margin-bottom: 25px;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .disclosure-link {
            display: block;
            padding: 15px 25px;
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            text-decoration: none;
            color: #1c61be;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .disclosure-link:hover {
            background-color: #1c61be;
            color: #ffffff;
            border-color: #1c61be;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(28, 97, 190, 0.2);
        }
        
        /* Section Divider */
        .divider {
            width: 100px;
            height: 3px;
            background-color: #1c61be;
            margin: 40px auto;
        }
        
        /* Footer */
        .disclosure-footer {
            background-color: #f8f9fa;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
        }
        
        .footer-text {
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 10px;
        }
        
        .contact-info {
            font-size: 0.95rem;
            color: #333333;
        }
        
        .contact-info a {
            color: #1c61be;
            text-decoration: none;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .disclosure-container {
                padding: 40px 20px;
            }
            
            .logo {
                max-width: 200px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .disclosure-text {
                font-size: 1rem;
            }
            
            .links-title {
                font-size: 1.3rem;
            }
            
            .links-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .disclosure-container {
                padding: 30px 15px;
            }
            
            .logo {
                max-width: 150px;
            }
            
            .page-title {
                font-size: 1.75rem;
            }
            
            .disclosure-text {
                font-size: 0.95rem;
            }
            
            .disclosure-link {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }
        
        /* Additional Utility Classes */
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .text-muted { color: #6c757d; }
        .fw-bold { font-weight: 700; }