<style>
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            line-height: 1.5;
            color: #333;
        }
        
        /* Header Styles */
        .header-container {
            padding: 10px 15px;
            border-bottom: 2px solid #f0f0f0;
            background-color: white;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
        .header-logo-left {
            height: 70px;
            max-width: 100%;
            object-fit: contain;
        }
        
        .header-logo-right {
            height: 60px;
            max-width: 100%;
            object-fit: contain;
        }
        
        /* Main Content Styles */
        .main-content {
            padding: 20px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cert-title {
            color: #006699;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .cert-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 20px;
            font-size: 0.9em;
        }
        
        .details-title {
            text-align: center;
            margin: 25px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #006699;
        }
        
        /* Table Styles */
        .details-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .details-table tr {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .details-table tr:last-child {
            border-bottom: none;
        }
        
        .details-table td {
            padding: 15px;
            vertical-align: top;
        }
        
        .details-table td:first-child {
            font-weight: 600;
            color: #006699;
            width: 40%;
            min-width: 200px;
        }
        
        /* Disclaimer Styles */
        .disclaimer-container {
            margin: 30px 0;
            padding: 20px;
            background-color: #fff8e1;
            border-left: 4px solid #ff9800;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .disclaimer-title {
            color: #e65100;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
        .disclaimer-list {
            margin: 0;
            padding-left: 20px;
        }
        
        .disclaimer-list li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .disclaimer-list li:last-child {
            margin-bottom: 0;
        }
        
        .disclaimer-note {
            margin-top: 15px;
            font-style: italic;
            color: #666;
            font-size: 0.9em;
            padding: 10px;
            background-color: #fff;
            border-radius: 4px;
            border: 1px solid #eee;
        }
        
        /* Footer Styles */
        .footer {
            margin-top: 40px;
            padding: 30px 15px;
            background-color: #f8f9fa;
            border-top: 2px solid #e9ecef;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contactus {
            color: #555;
            line-height: 1.8;
            font-size: 0.95em;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .contactus a {
            color: #006699;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contactus a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.85em;
            padding-top: 15px;
            border-top: 1px solid #e0e0e0;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .logo-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .header-logo-left {
                height: 60px;
            }
            
            .header-logo-right {
                height: 50px;
            }
            
            .main-content {
                padding: 15px 10px;
            }
            
            .cert-title {
                font-size: 1.2em;
            }
            
            .details-title {
                font-size: 1.1em;
            }
            
            .details-table {
                display: block;
                overflow-x: auto;
            }
            
            .details-table td {
                display: block;
                width: 100%;
                padding: 12px 10px;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .details-table td:first-child {
                width: 100%;
                min-width: unset;
                background-color: #f8f9fa;
                font-weight: 700;
                border-bottom: none;
            }
            
            .details-table td:nth-child(2) {
                padding-top: 5px;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .details-table tr:last-child td:last-child {
                border-bottom: none;
            }
            
            .disclaimer-container {
                padding: 15px;
                margin: 20px 0;
            }
            
            .disclaimer-list {
                padding-left: 15px;
            }
            
            .footer {
                padding: 20px 10px;
            }
        }
        
        @media (max-width: 480px) {
            .header-logo-left {
                height: 50px;
            }
            
            .header-logo-right {
                height: 45px;
            }
            
            .cert-title {
                font-size: 1.1em;
            }
            
            .details-title {
                font-size: 1em;
            }
            
            .disclaimer-title {
                font-size: 1em;
            }
            
            .disclaimer-list li {
                font-size: 0.9em;
            }
            
            .contactus {
                font-size: 0.9em;
            }
            
            .copyright {
                font-size: 0.8em;
            }
        }
        
        .print-only {
            display: none;
        }
        
        @media print {
            .footer {
                position: fixed;
                bottom: 0;
                width: 100%;
            }
            
            .disclaimer-container {
                break-inside: avoid;
            }
        }
    </style>