/* Cyber Compliance Checklist Styles */
.ccc-container { /* Or use the more specific selector above */
    max-width: 1080px !important;
    width: 100% !important; 
    margin: 0 auto !important; /* Also make margin important if it's being overridden */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 20px 25px 25px 25px; 
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* General paragraphs directly under container */
.ccc-container > p { 
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}
.ccc-container > p strong {
    color: #1a202c;
}

/* Styles for the Instructions Section */
.ccc-instructions-section {
    background-color: #f0f4f8;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #dae4ee;
}

.ccc-instructions-section .ccc-section-heading {
    margin-top: 0; 
    margin-bottom: 10px;
    border-bottom: none; 
    font-size: 1.3em; 
    color: #2c5282; 
}

.ccc-instructions-section p {
    font-size: 0.95em;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}
.ccc-instructions-section p strong {
    color: #c53030; 
}

.ccc-section-heading { 
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
    font-size: 1.5em;
    color: #4A5568;
}

/* ... (Rest of your existing CSS for .ccc-question, .ccc-help, tooltips, results, forms, etc. remains the same) ... */
/* Ensure all styles from the previous full CSS file are present from this point downwards */

.ccc-question {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ccc-question label {
    flex-grow: 1;
    margin-right: 10px;
    color: #2D3748;
    cursor: pointer;
}
.ccc-question label input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.ccc-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4b81c2; 
    color: white;            
    font-weight: bold;
    width: 26px;
    height: 26px;
    line-height: 1; 
    text-align: center;
    border-radius: 50%;    
    font-size: 16px;       
    cursor: pointer;
    flex-shrink: 0; 
}

.ccc-tooltip-popup {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(15px + 26px + 12px); 
    background: #fff;
    color: #2D3748;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #CBD5E0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px; 
    max-width: calc(100vw - 80px); 
    z-index: 1000;
    font-size: 0.9em;
    text-align: left;
}

/* Results and Form Styling */
#ccc-results {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

#ccc-results h3 { 
    color: #333;
    margin-bottom: 20px;
}

#ccc-missing {
    padding-left: 0;
}

#ccc-missing li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E9EDF2;
    list-style-type: none; 
}

#ccc-missing li:last-child {
    border-bottom: none;
}

#ccc-missing li strong {
    display: block; 
    font-size: 1.1em; 
    color: #2D3748; 
    margin-bottom: 8px; 
}

.ccc-result-explanation {
    font-size: 0.95em;
    color: #4A5568; 
    margin-top: 5px;
    padding-left: 15px; 
    border-left: 3px solid #A0AEC0; 
    line-height: 1.5;
}
.ccc-result-explanation em {
    font-style: normal;
    font-weight: 600;
    color: #2D3748;
}


#ccc-framework-assessment p { 
    margin-bottom: 15px;
    font-size: 0.95em;
}
.ccc-framework-score-list {
    list-style-type: none;
    padding-left: 0;
}
.ccc-framework-score-list li {
    margin-bottom: 8px;
    padding: 8px;
    background-color: #f9f9f9;
    border-left: 3px solid #4b81c2;
}

.ccc-framework-clarification {
    margin-top: 20px;
    padding: 15px;
    background-color: #fefcbf;
    border: 1px solid #faf089;
    border-radius: 5px;
    font-size: 0.9em;
    color: #744210;
    line-height: 1.5;
}
.ccc-framework-clarification strong {
    display: block;
    margin-bottom: 5px;
    color: #975a16;
}


#ccc-contact-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed #CBD5E0;
}
#ccc-contact-form p { 
    margin-bottom: 10px;
    font-weight: 500;
}

#ccc-contact-form input[type="text"],
#ccc-contact-form input[type="email"] {
    display: block;
    width: calc(100% - 22px); 
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #CBD5E0;
    border-radius: 5px;
}

.ccc-submit-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.ccc-email-message {
    margin-left: 15px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    display: none;
}
.ccc-email-message.ccc-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}
.ccc-email-message.ccc-error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.ccc-contact-disclaimer {
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
    text-align: left;
}
.ccc-contact-disclaimer small {
    font-size: inherit;
}

/* Button styles */
.ccc-button, 
#ccc-contact-form button,
#ccc-submit {
    padding: 10px 15px;
    background-color: #4b81c2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease-in-out;
}

.ccc-button:hover,
#ccc-contact-form button:hover,
#ccc-submit:hover {
    background-color: #3a66a0;
}

#ccc-submit { 
    display: block;
    margin-top: 25px; 
    margin-bottom: 25px; 
}

.ccc-footer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E9EDF2;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}
.ccc-footer-note small {
    font-size: inherit; 
}
.ccc-footer-note strong {
    color: #333;
}