.certificate-details {
            margin-top: 30px;
            padding: 20px;
            background-color: #f5f5f5;
            border-radius: 8px;
            border-left: 4px solid #ff6b00;
        }
        .certificate-details h3 {
            color: #333;
            margin-bottom: 15px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        .certificate-details p {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .certificate-details .label {
            font-weight: 600;
            display: inline-block;
            width: 150px;
            color: #555;
        }
        .download-link {
            display: inline-block;
            margin-top: 20px;
            background-color: #ff6b00;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .download-link:hover {
            background-color: #e65c00;
        }
        @media (max-width: 768px) {
            .verify-container {
                padding: 20px;
                margin: 0 15px;
            }
            .certificate-details .label {
                width: 120px;
            }
        }
        
        
        .certificate-details {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border: none;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.certificate-header {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.certificate-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
    border: none;
    padding: 0;
}

.cert-logo {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cert-logo i {
    font-size: 20px;
}

.certificate-content {
    padding: 25px;
}

.cert-row {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.cert-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cert-label {
    width: 150px;
    color: #666;
    font-weight: 500;
    font-size: 15px;
}

.cert-value {
    flex: 1;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.certificate-footer {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.download-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.download-link:hover {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
}

.download-link i {
    margin-right: 8px;
}

.valid-cert {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.valid-cert p {
    color: #2e7d32;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cert-row {
        flex-direction: column;
    }
    
    .cert-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .cert-value {
        width: 100%;
    }
}