/* QP Testing Standards Widget Styles */
.qp-testing-standards-section {
    position: relative;
}

.qp-testing-standards-container {
    margin: 0 auto;
    position: relative;
}

.qp-testing-standards-header {
    text-align: center;
}

.qp-testing-standards-header h2 {
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.qp-testing-standards-header p {
    margin: 0;
    line-height: 1.5;
}

.qp-testing-standards-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.qp-testing-standards-card {
    flex: 1;
    max-width: 500px;
}

.qp-testing-standards-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.qp-testing-standards-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.qp-testing-standards-icon img {
    object-fit: contain;
    display: block;
}

.qp-testing-standards-card h3 {
    margin: 0;
    line-height: 1.3;
}

.qp-testing-standards-tests {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qp-testing-standards-tests li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.qp-testing-standards-tests li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 14px;
}

.qp-testing-standards-tests li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qp-testing-standards-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .qp-testing-standards-card {
        max-width: 100%;
    }
    
    .qp-testing-standards-header h2 {
        font-size: 36px !important;
    }
    
    .qp-testing-standards-header p {
        font-size: 16px !important;
    }
    
    .qp-testing-standards-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .qp-testing-standards-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .qp-testing-standards-header h2 {
        font-size: 28px !important;
    }
    
    .qp-testing-standards-card {
        padding: 25px !important;
    }
    
    .qp-testing-standards-icon img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .qp-testing-standards-card h3 {
        font-size: 20px !important;
    }
    
    .qp-testing-standards-tests li {
        font-size: 14px !important;
    }
}