
    .clsr-about-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.7;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-about-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 28px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .clsr-about-container h3 {
        color: #4ca347;
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .clsr-about-intro {
        font-size: 16px;
        color: #444;
        margin-bottom: 30px;
    }
    .clsr-about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .clsr-card {
        background: #f8fafc;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border-top: 4px solid #4ca347;
        transition: transform 0.3s ease;
    }
    .clsr-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .clsr-card i {
        font-size: 30px;
        color: #4ca347;
        margin-bottom: 15px;
        display: block;
    }
    .clsr-card h3 {
        margin-top: 0;
        color: #06382c;
        border-bottom: none;
    }
    .clsr-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .clsr-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }
    .clsr-list li::before {
        content: '\f058'; /* FontAwesome check-circle */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #4ca347;
    }
    .clsr-subject-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .clsr-subject-box {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px;
    }
    .clsr-subject-box h4 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 16px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 10px;
    }
    .clsr-subject-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }
    .clsr-subject-box ul li {
        margin-bottom: 8px;
        color: #555;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .clsr-subject-box ul li i {
        color: #8cc63f;
        font-size: 10px;
    }
    .clsr-types-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    .clsr-type-badge {
        background: #e6f4ea;
        color: #06382c;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #cce8d6;
    }


    .clsr-submit-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.7;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-submit-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 28px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 50px;
        margin-bottom: 25px;
    }
    .clsr-submit-intro {
        font-size: 16px;
        color: #444;
        margin-bottom: 30px;
        background: #f8fafc;
        padding: 25px;
        border-left: 4px solid #4ca347;
        border-radius: 4px;
    }
    
    /* Timeline styling for Submission Process */
    .clsr-timeline {
        position: relative;
        margin-top: 30px;
        padding-left: 30px;
    }
    .clsr-timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #cce8d6;
    }
    .clsr-timeline-step {
        position: relative;
        margin-bottom: 30px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-timeline-step::before {
        content: '\f00c'; /* check icon */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: -40px;
        top: 20px;
        width: 22px;
        height: 22px;
        background: #4ca347;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        border: 4px solid white;
    }
    .clsr-timeline-step h3 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .clsr-step-badge {
        background: #e6f4ea;
        color: #4ca347;
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    /* Lists */
    .clsr-bullet-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .clsr-bullet-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        color: #555;
    }
    .clsr-bullet-list li::before {
        content: '\f111'; /* circle */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 6px;
        color: #8cc63f;
        font-size: 6px;
    }
    
    /* Checklist */
    .clsr-checklist-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }
    .clsr-checklist-item {
        background: white;
        border: 1px solid #e2e8f0;
        padding: 15px;
        border-radius: 6px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    .clsr-checklist-item i {
        color: #4ca347;
        font-size: 18px;
        margin-top: 2px;
    }
    
    /* Format Box */
    .clsr-format-box {
        background: #06382c;
        color: white;
        border-radius: 12px;
        padding: 30px;
        margin-top: 30px;
    }
    .clsr-format-box h3 {
        color: #8cc63f;
        margin-top: 0;
        font-size: 22px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .clsr-format-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    .clsr-format-grid li {
        color: #e2e8f0;
    }
    .clsr-format-grid li::before {
        content: '\f058'; /* check-circle */
        color: #8cc63f;
        font-size: 12px;
        top: 4px;
    }



    .clsr-privacy-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.8;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-privacy-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 26px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 45px;
        margin-bottom: 25px;
    }
    
    /* Intro Alert Box */
    .clsr-privacy-intro {
        background: #f0f7f3;
        border: 1px solid #cce8d6;
        border-left: 5px solid #4ca347;
        padding: 25px 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-privacy-intro h3 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .clsr-privacy-intro p {
        margin-bottom: 15px;
        color: #444;
    }
    .clsr-privacy-intro p:last-child {
        margin-bottom: 0;
    }
    
    /* List Grid Styling */
    .clsr-privacy-list-wrapper {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .clsr-privacy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
    .clsr-privacy-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px;
        background: #f8fafc;
        border-radius: 6px;
        transition: transform 0.2s ease;
    }
    .clsr-privacy-item:hover {
        transform: translateX(5px);
        background: #f0f7f3;
    }
    .clsr-privacy-item i {
        color: #4ca347;
        font-size: 16px;
        margin-top: 4px;
    }
    .clsr-privacy-item span {
        color: #555;
        font-weight: 500;
    }
    
    /* Security Box */
    .clsr-security-box {
        background: #06382c;
        color: white;
        padding: 35px;
        border-radius: 12px;
        text-align: center;
        margin-top: 50px;
        position: relative;
    }
    .clsr-security-box i.fa-shield-alt {
        font-size: 40px;
        color: #8cc63f;
        margin-bottom: 20px;
    }
    .clsr-security-box p {
        color: #e2e8f0;
        max-width: 800px;
        margin: 0 auto 15px auto;
    }
    .clsr-security-box p:last-child {
        margin-bottom: 0;
    }



    .clsr-apc-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.8;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-apc-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 26px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    
    /* Intro Highlight Box */
    .clsr-apc-intro {
        background: #f0f7f3;
        border-left: 5px solid #4ca347;
        padding: 25px 30px;
        border-radius: 6px;
        margin-bottom: 35px;
    }
    .clsr-apc-intro p {
        margin-bottom: 15px;
        color: #444;
    }
    .clsr-apc-intro p:last-child {
        margin-bottom: 0;
    }

    /* Important Alert */
    .clsr-apc-alert {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        background: #fff4e5;
        border: 1px solid #ffe0b2;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 40px;
    }
    .clsr-apc-alert i {
        color: #f57c00;
        font-size: 24px;
        margin-top: 2px;
    }
    .clsr-apc-alert div {
        color: #664d03;
        font-weight: 500;
    }

    /* Table Styling */
    .clsr-apc-table-wrapper {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        margin-bottom: 40px;
        border: 1px solid #e2e8f0;
    }
    .clsr-apc-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }
    .clsr-apc-table th, 
    .clsr-apc-table td {
        padding: 16px 20px;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }
    .clsr-apc-table th {
        background: #06382c;
        color: white;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .clsr-apc-table tr:last-child td {
        border-bottom: none;
    }
    .clsr-apc-table tr:nth-child(even) td {
        background: #f8fafc;
    }
    .clsr-apc-table td:first-child {
        font-weight: 600;
        color: #06382c;
        width: 35%;
        border-right: 1px solid #e2e8f0;
    }
    .clsr-apc-table td:last-child {
        color: #555;
    }

    /* Concluding Box */
    .clsr-apc-footer {
        background: white;
        padding: 25px;
        border-radius: 8px;
        border-top: 4px solid #4ca347;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-apc-footer p {
        margin: 0;
        color: #444;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .clsr-apc-footer p i {
        color: #4ca347;
        font-size: 24px;
        margin-top: 2px;
    }



    .clsr-archiving-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.8;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-archiving-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 26px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    
    /* Intro Alert Box */
    .clsr-archiving-intro {
        background: #f0f7f3;
        border: 1px solid #cce8d6;
        border-left: 5px solid #4ca347;
        padding: 25px 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-archiving-intro h3 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .clsr-archiving-intro p {
        margin-bottom: 15px;
        color: #444;
    }
    .clsr-archiving-intro p:last-child {
        margin-bottom: 0;
    }

    /* Objectives Grid Styling */
    .clsr-objectives-wrapper {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 30px;
        margin-bottom: 40px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .clsr-objectives-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
    .clsr-objective-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        background: #f8fafc;
        border-radius: 6px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .clsr-objective-item:hover {
        transform: translateY(-3px);
        background: #f0f7f3;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .clsr-objective-item i {
        color: #4ca347;
        font-size: 18px;
        margin-top: 3px;
    }
    .clsr-objective-item span {
        color: #555;
        font-weight: 500;
        line-height: 1.5;
    }

    /* Footer Box */
    .clsr-archiving-footer {
        background: #06382c;
        color: white;
        padding: 35px;
        border-radius: 12px;
        text-align: center;
        position: relative;
    }
    .clsr-archiving-footer i.fa-server {
        font-size: 40px;
        color: #8cc63f;
        margin-bottom: 20px;
    }
    .clsr-archiving-footer p {
        color: #e2e8f0;
        max-width: 800px;
        margin: 0 auto 15px auto;
    }
    .clsr-archiving-footer p:last-child {
        margin-bottom: 0;
    }




    .clsr-peer-review-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.8;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-peer-review-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 26px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 45px;
        margin-bottom: 25px;
    }

    /* Intro Section */
    .clsr-peer-review-intro {
        background: #f0f7f3;
        border-left: 5px solid #4ca347;
        padding: 25px 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-peer-review-intro h3 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .clsr-peer-review-intro p {
        margin-bottom: 15px;
        color: #444;
    }
    .clsr-peer-review-intro p:last-child {
        margin-bottom: 0;
    }

    /* Evaluation Grids */
    .clsr-evaluation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    .clsr-eval-card {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border-top: 4px solid #06382c;
        transition: transform 0.3s ease;
    }
    .clsr-eval-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    .clsr-eval-card h4 {
        color: #06382c;
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
    }
    .clsr-eval-card h4 i {
        color: #4ca347;
    }
    .clsr-eval-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .clsr-eval-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: #555;
    }
    .clsr-eval-list li::before {
        content: '\f00c'; /* Check icon */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #4ca347;
    }

    /* Decisions Section */
    .clsr-decisions-wrapper {
        background: #06382c;
        color: white;
        padding: 35px;
        border-radius: 12px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .clsr-decisions-wrapper h3 {
        color: #8cc63f;
        margin-top: 0;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .clsr-decisions-wrapper p {
        color: #e2e8f0;
        margin-bottom: 25px;
    }
    .clsr-decisions-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
    }
    .clsr-decision-badge {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background 0.3s;
    }
    .clsr-decision-badge:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    .clsr-decision-badge i {
        color: #8cc63f;
    }


    .clsr-ethics-container {
        font-family: 'Inter', sans-serif;
        color: #333;
        line-height: 1.8;
        font-size: 15px;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .clsr-ethics-container h2 {
        color: #06382c;
        font-family: 'Times New Roman', serif;
        font-size: 26px;
        border-bottom: 2px solid #4ca347;
        padding-bottom: 10px;
        margin-top: 45px;
        margin-bottom: 25px;
    }

    /* Intro Alert Box */
    .clsr-ethics-intro {
        background: #f0f7f3;
        border: 1px solid #cce8d6;
        border-left: 5px solid #4ca347;
        padding: 25px 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .clsr-ethics-intro h3 {
        color: #06382c;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .clsr-ethics-intro p {
        margin-bottom: 15px;
        color: #444;
    }
    .clsr-ethics-intro p:last-child {
        margin-bottom: 0;
    }

    /* Cards Grid */
    .clsr-roles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .clsr-role-card {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        border-top: 4px solid #4ca347;
        transition: transform 0.3s ease;
        position: relative;
    }
    .clsr-role-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    .clsr-role-card h4 {
        color: #06382c;
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
    }
    .clsr-role-icon {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 30px;
        color: rgba(76, 163, 71, 0.1); /* Very faint green icon in background */
    }

    .clsr-role-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .clsr-role-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: #555;
    }
    .clsr-role-list li::before {
        content: '\f058'; /* check-circle icon */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #8cc63f;
    }

    /* Warning Box */
    .clsr-ethics-warning {
        background: #06382c;
        color: white;
        padding: 25px 30px;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
    }
    .clsr-ethics-warning i {
        color: #ff6b6b;
        font-size: 30px;
        margin-top: 5px;
    }
    .clsr-ethics-warning p {
        margin: 0;
        color: #e2e8f0;
        font-size: 15px;
    }



















