.open-access-page {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.8;
}
.open-access-page .policy-intro {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border-left: 5px solid #0f4c81;
}
.open-access-page .policy-intro p {
  margin-bottom: 15px;
}
.open-access-page .policy-intro p:last-child {
  margin-bottom: 0;
}
.open-access-page .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.open-access-page .benefits-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #1e8449;
}
.open-access-page .benefits-card h3 {
  color: #0f4c81;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.open-access-page .benefits-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.open-access-page .benefits-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
}
.open-access-page .benefits-card ul li:before {
  content: "\f00c"; /* FontAwesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #219653;
  position: absolute;
  left: 0;
  top: 2px;
}
.open-access-page .mission-statement {
  background: #eaf1f8;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
.open-access-page .mission-statement p {
  color: #0f4c81;
  font-weight: 600;
  font-size: 1.1em;
  margin: 0;
}
@media (max-width: 768px) {
  .open-access-page .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* Container - Fixed width as requested */
.jdrps-guidelines-container {
    width: 1000px;
    margin: 40px auto;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
}
/* Header Section */
.jdrps-guidelines-container .guidelines-header {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #1a4d8c;
    margin-bottom: 40px;
}
.jdrps-guidelines-container h1 {
    color: #1a4d8c;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}
.jdrps-guidelines-container .intro-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    text-align: justify;
}
/* Section Headings */
.jdrps-guidelines-container .guidelines-section {
    margin-bottom: 40px;
}
.jdrps-guidelines-container h2 {
    color: #2c3e50;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.jdrps-guidelines-container .section-icon {
    color: #1a4d8c;
    font-size: 30px;
    margin-right: 12px;
}
/* Process Steps */
.jdrps-guidelines-container .process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.jdrps-guidelines-container .step-card {
    background: #ffffff;
    border-left: 4px solid #3498db;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.jdrps-guidelines-container .step-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.jdrps-guidelines-container .step-card h3 {
    color: #1a4d8c;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}
/* Custom Lists */
.jdrps-guidelines-container .custom-list {
    margin: 0;
    padding-left: 20px;
}
.jdrps-guidelines-container .custom-list li {
    margin-bottom: 8px;
    position: relative;
}
/* Content Boxes */
.jdrps-guidelines-container .content-box {
    background: #f8fafd;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #e1e8f0;
}
/* Two Column List layout */
.jdrps-guidelines-container .two-col-list {
    display: flex;
    gap: 40px;
    margin: 20px 0;
}
.jdrps-guidelines-container .two-col-list ul {
    flex: 1;
}
.jdrps-guidelines-container .highlight-text {
    background: #eef4fb;
    padding: 15px;
    border-radius: 6px;
    color: #1a4d8c;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 0;
}
/* Check List styling */
.jdrps-guidelines-container .check-list {
    list-style-type: none;
    padding-left: 5px;
}
.jdrps-guidelines-container .check-list li {
    padding-left: 30px;
    margin-bottom: 12px;
}
.jdrps-guidelines-container .check-list li::before {
    content: "\2713"; /* Checkmark symbol */
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}


/* ========================================================
   Peer Review Process Page Styles
======================================================== */
.peer-review-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.peer-review-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.peer-review-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.peer-review-intro p:last-child {
    margin-bottom: 0;
}

.peer-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pr-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.pr-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

.pr-card h3 {
    color: #0f4c81;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.pr-card h3 span {
    color: #27ae60;
    font-size: 24px;
}

/* Styled Lists with Reliable SVG Checkmarks */
.pr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

/* Decisions Section Special Styling */
.pr-decisions p {
    font-size: 15px;
    color: #555;
    margin-top: 20px;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 6px;
    border: 1px dashed #ccc;
}

.pr-conclusion {
    text-align: center;
    background: #0f4c81;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .peer-review-grid {
        grid-template-columns: 1fr;
    }
    .peer-review-intro {
        padding: 25px;
    }
    .pr-card {
        padding: 25px;
    }
}



/* ========================================================
   Publication Ethics Page Styles
======================================================== */
.ethics-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.ethics-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.ethics-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.ethics-intro p:last-child {
    margin-bottom: 0;
}

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ethics-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.ethics-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

.ethics-card h3 {
    color: #0f4c81;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.ethics-card h3 span {
    color: #27ae60;
    font-size: 24px;
}

/* Styled Lists with Reliable SVG Checkmarks */
.ethics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ethics-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

/* Misconduct Section Special Styling (Red accents for warnings) */
.ethics-card.card-warning h3 {
    color: #c0392b;
    border-bottom-color: #fadbd8;
}
.ethics-card.card-warning h3 span {
    color: #e74c3c;
}
.ethics-card.card-warning .ethics-list li {
    /* Red X SVG Background for misconduct */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23e74c3c"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

.ethics-conclusion {
    text-align: center;
    background: #0f4c81;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .ethics-grid {
        grid-template-columns: 1fr;
    }
    .ethics-intro {
        padding: 25px;
    }
    .ethics-card {
        padding: 25px;
    }
}


/* ========================================================
   Article Processing Charges (APC) Page Styles
======================================================== */
.apc-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.apc-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.apc-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.apc-intro p:last-child {
    margin-bottom: 0;
}

.apc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.apc-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.apc-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

.apc-card h3 {
    color: #0f4c81;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.apc-card h3 span {
    color: #27ae60;
    font-size: 24px;
}

.apc-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* Styled Lists with Reliable SVG Checkmarks */
.apc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apc-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

.apc-conclusion {
    text-align: center;
    background: #0f4c81;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .apc-grid {
        grid-template-columns: 1fr;
    }
    .apc-intro {
        padding: 25px;
    }
    .apc-card {
        padding: 25px;
    }
}



/* ========================================================
   Privacy Statement Page Styles
======================================================== */
.privacy-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.privacy-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.privacy-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.privacy-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.privacy-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

.privacy-card h3 {
    color: #0f4c81;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.privacy-card h3 span {
    color: #27ae60;
    font-size: 24px;
}

.privacy-card p {
    font-size: 15px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 0;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 6px;
    border: 1px dashed #ccc;
}

/* Styled Lists with Reliable SVG Checkmarks */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

.privacy-conclusion {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-top: 4px solid #0f4c81;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.privacy-conclusion p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.privacy-conclusion p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    .privacy-intro, .privacy-card, .privacy-conclusion {
        padding: 25px;
    }
}



/* ========================================================
   Archiving & Copyright Page Styles
======================================================== */
.policy-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.policy-section-title {
    color: #0f4c81;
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.policy-section-title:first-child {
    margin-top: 0;
}

.policy-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.policy-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.policy-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

.policy-card h3 {
    color: #0f4c81;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.policy-card h3 span {
    color: #27ae60;
    font-size: 24px;
}

/* Styled Lists with Reliable SVG Checkmarks */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.policy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 16px;
}

.policy-conclusion {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-top: 4px solid #0f4c81;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 40px;
}

.policy-conclusion p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.policy-conclusion p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .policy-intro, .policy-card, .policy-conclusion {
        padding: 25px;
    }
    .policy-list {
        grid-template-columns: 1fr;
    }
}



/* ========================================================
   About the Journal Page Styles
======================================================== */
.about-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Section Titles */
.about-section-title {
    color: #0f4c81;
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.about-section-title:first-child {
    margin-top: 0;
}

/* Intro Box */
.about-intro {
    background: #f4f8fb;
    border-left: 5px solid #0f4c81;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.about-intro p {
    font-size: 16px;
    margin-bottom: 15px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* Standard 2-Column Grid for main points */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* 3-Column Grid for Subject Areas */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Cards */
.about-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.08);
    transform: translateY(-3px);
}

/* Card Headings */
.about-card h3 {
    color: #0f4c81;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.about-card h3 span {
    color: #27ae60;
    font-size: 22px;
}

/* Subject Area specific heading */
.subject-grid .about-card h3 {
    font-size: 18px;
    color: #2c3e50;
    border-bottom-color: #e2e8f0;
}
.subject-grid .about-card h3 span {
    color: #3498db;
    font-size: 18px;
}

/* Styled Lists with Reliable SVG Checkmarks */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Pushes content evenly */
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14.5px;
    color: #555;
    /* Bulletproof SVG Checkmark Background */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%230f4c81"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 15px;
}

/* Smaller checkmark color for subject areas */
.subject-grid .about-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%233498db"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>') no-repeat left 4px;
    background-size: 14px;
    font-size: 14px;
}

/* Conclusion Box */
.about-conclusion {
    text-align: center;
    background: #0f4c81;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .subject-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-grid, .subject-grid {
        grid-template-columns: 1fr;
    }
    .about-intro, .about-card {
        padding: 25px;
    }
}



