:root {
--primary: #087f8c;
--primary-dark: #05616b;
--secondary: #0b4f6c;
--dark: #102a43;
--text: #52606d;
--light: #f4f9fb;
--border: #e5edf1;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.7;
}
.container {
width: 90%;
max-width: 1240px;
margin: auto;
}
a {
text-decoration: none;
color: inherit;
}
/* ================= TOP BAR ================= */
.top-bar {
background: var(--dark);
color: #ffffff;
font-size: 13px;
}
.top-bar-inner {
display: flex;
justify-content: space-between;
padding: 10px 0;
}
.top-links {
display: flex;
gap: 25px;
}
/* ================= HEADER ================= */
.main-header {
background: #ffffff;
border-bottom: 1px solid var(--border);
}
.header-inner {
min-height: 82px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo img {
    max-width: 378px;
    margin-top: 10px;
}
.main-navigation {
display: flex;
align-items: center;
gap: 22px;
font-size: 14px;
font-weight: 600;
}
.main-navigation a:hover,
.main-navigation a.active {
color: var(--primary);
}
.nav-submit {
background: var(--primary);
color: #ffffff !important;
padding: 12px 18px;
border-radius: 5px;
}
.mobile-menu-button {
display: none;
border: none;
background: none;
font-size: 25px;
}
/* ================= HERO ================= */
.hero-section {background: linear-gradient(105deg, #087f8c 0%, #087f8c 55%, #087f8c 100%);padding: 40px 0;overflow: hidden;}
.hero-content {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: 50px;
}
.hero-label,
.section-label {color: #ffffff;font-size: 12px;font-weight: 800;letter-spacing: 2px;}
.section-label {
    color: #087f8c;
}
.hero-text h1 {color: #102a43;font-size: clamp(38px, 5vw, 42px);line-height: 1.15;margin: 20px 0;}
.hero-text h1 span {color: #ffffff;}
.hero-text p {max-width: 620px;font-size: 17px;margin-bottom: 30px;color: #ebf2f5;}
.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 15px 24px;
border-radius: 5px;
font-weight: 700;
transition: 0.3s;
}
.btn-primary {background: #ffffff;color: #087f8c;}
.btn-primary:hover {
background: var(--primary-dark);
}
.btn-outline {border: 1px solid #ffffff;color: #f4f9fb;}
.btn-outline:hover {
background: var(--primary);
color: #ffffff;
}
.hero-trust {display: flex;gap: 25px;margin-top: 35px;flex-wrap: wrap;font-size: 13px;color: #fff;}
.hero-trust i {color: #c9620d;margin-right: 5px;}
/* ================= HERO VISUAL ================= */
.hero-visual {
min-height: 420px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-circle {
width: 300px;
height: 300px;
border-radius: 50%;
background: #d4eef0;
display: flex;
align-items: center;
justify-content: center;
}
.hero-circle i {
font-size: 120px;
color: var(--primary);
}
.research-card {
position: absolute;
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
display: flex;
flex-direction: column;
gap: 3px;
}
.research-card i {
font-size: 25px;
color: var(--primary);
margin-bottom: 8px;
}
.research-card strong {
color: var(--dark);
}
.research-card span {
font-size: 13px;
}
.card-one {
left: 5%;
top: 15%;
}
.card-two {
right: 2%;
bottom: 15%;
}
/* ================= HERO VISUAL ================= */
.hero-visual {
min-height: 420px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-circle {
width: 300px;
height: 300px;
border-radius: 50%;
background: #d4eef0;
display: flex;
align-items: center;
justify-content: center;
}
.hero-circle i {
font-size: 120px;
color: var(--primary);
}
.research-card {
position: absolute;
background: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
display: flex;
flex-direction: column;
gap: 3px;
}
.research-card i {
font-size: 25px;
color: var(--primary);
margin-bottom: 8px;
}
.research-card strong {
color: var(--dark);
}
.research-card span {
font-size: 13px;
}
.card-one {
left: 5%;
top: 15%;
}
.card-two {
right: 2%;
bottom: 15%;
}
/* ================= STATS ================= */
.stats-section {
padding: 26px 0;
border-bottom: 1px solid var(--border);
background: #102a43;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.stat-box {
display: flex;
align-items: center;
gap: 15px;
}
.stat-box > i {
font-size: 28px;
color: var(--primary);
}
.stat-box strong {
display: block;
color: var(--white);
font-size: 18px;
}
.stat-box span {
font-size: 12px;
color: var(--light);
}
/* ================= SECTIONS ================= */
.articles-section, .research-section, .why-section {
padding: 40px 0;
background: #ebf2f5;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 14px;
}
.section-heading h2, .center-heading h2 {
    color: var(--primary-dark);
    font-size: 34px;
}
.view-all {
color: var(--primary);
font-weight: 700;
}
/* ================= ARTICLES ================= */
.article-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.article-card {
    padding: 20px 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: .3s;
    background: var(--white);
}
.article-card:hover {
transform: translateY(-7px);
box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}
.article-category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}
.article-card h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.article-card p {
    font-size: 13px;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 18px;
    font-size: 12px;
}
.article-meta a {
color: var(--primary);
font-weight: 700;
}
/* ================= CURRENT ISSUE ================= */
.current-issue-section {
background: var(--light);
padding: 80px 0;
}
.current-issue-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.issue-content {
max-width: 600px;
}
.issue-content h2 {
color: var(--dark);
font-size: 42px;
margin: 10px 0;
}
.issue-card {
display: flex;
align-items: center;
gap: 20px;
background: #ffffff;
padding: 30px;
min-width: 360px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
}
.issue-icon {
width: 70px;
height: 70px;
border-radius: 50%;
background: #d9f0f1;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 28px;
}
.issue-card span {
color: var(--primary);
font-size: 12px;
font-weight: 700;
}
.issue-card h3 {
color: var(--dark);
}
/* ================= CENTER HEADING ================= */
.center-heading {
text-align: center;
max-width: 650px;
margin: 0 auto 20px;
}
/* ================= RESEARCH AREAS ================= */
.research-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
.research-area {
display: flex;
align-items: center;
gap: 15px;
padding: 20px;
border: 1px solid var(--border);
border-radius: 7px;
transition: .3s;
background: var(--white);
}
.research-area i:first-child {
color: var(--primary);
font-size: 22px;
}
.research-area span {
flex: 1;
color: var(--dark);
font-weight: 700;
}
.research-area i:last-child {
font-size: 13px;
}
.research-area:hover {
border-color: var(--primary);
transform: translateY(-3px);
}
/* ================= WHY ================= */
.why-section {
background: var(--light);
}
.why-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.why-card {
background: #ffffff;
padding: 30px;
border-radius: 8px;
}
.why-card > i {
color: var(--primary);
font-size: 30px;
margin-bottom: 20px;
}
.why-card h3 {
color: var(--dark);
margin-bottom: 10px;
}
/* ================= CTA ================= */
.submission-cta {background: var(--primary);color: #ffffff;padding: 40px 0;}
.cta-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}
.cta-content h2 {font-size: 32px;margin: 4px 0;}
.cta-content span {
font-size: 12px;
font-weight: 700;
letter-spacing: 2px;
}
.btn-light {
background: #ffffff;
color: var(--primary);
}
/* ================= FOOTER ================= */
.site-footer {
background: var(--dark);
color: #d9e2ec;
padding-top: 70px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 50px;
padding-bottom: 50px;
}
.footer-about img {
max-width: 220px;
margin-bottom: 20px;
}
.footer-grid h4 {
color: #ffffff;
margin-bottom: 20px;
}
.footer-grid a {
display: block;
margin-bottom: 10px;
font-size: 14px;
}
.footer-grid a:hover {
color: #ffffff;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,.1);
padding: 20px 0;
font-size: 13px;
}
/* ================= RESPONSIVE ================= */
@media(max-width: 1100px) {
.main-navigation {
gap: 12px;
font-size: 13px;
}
}
@media(max-width: 900px) {
.main-navigation {
display: none;
}
.mobile-menu-button {
display: block;
}
.hero-content {
grid-template-columns: 1fr;
}
.hero-visual {
min-height: 350px;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
.article-grid {
grid-template-columns: 1fr 1fr;
}
.why-grid {
grid-template-columns: 1fr 1fr;
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media(max-width: 600px) {
.top-links {
display: none;
}
.top-bar-inner {
justify-content: center;
}
.hero-section {
padding: 70px 0;
}
.hero-text h1 {
font-size: 38px;
}
.hero-visual {
min-height: 280px;
}
.hero-circle {
width: 220px;
height: 220px;
}
.hero-circle i {
font-size: 80px;
}
.stats-grid,
.article-grid,
.research-grid,
.why-grid,
.footer-grid {
grid-template-columns: 1fr;
}
.section-heading {
display: block;
}
.view-all {
display: inline-block;
margin-top: 15px;
}
.current-issue-wrapper,
.cta-content {
flex-direction: column;
align-items: flex-start;
}
.issue-card {
min-width: auto;
width: 100%;
}
}
/* Editorial Section */
.editorial-section {
width: 100%;
display: grid;
grid-template-columns: 1.25fr repeat(4, 1fr);
align-items: stretch;
gap: 30px;
padding: 35px;
box-sizing: border-box;
background: #ffffff;
}
/* Left Intro Panel */
.editorial-intro {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 74px;
}
.editorial-intro h2 {
margin: 0;
font-size: 20px;
line-height: 1.45;
font-weight: 600;
color: var(--primary);
}
.editorial-intro h3 {
margin: 6px 0 6px;
font-size: 19px;
font-weight: 400;
color: #292929;
}
/* Handshake Decoration */
.handshake {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 0;
margin-bottom: 12px;
}
.handshake span {
width: 48px;
height: 3px;
background: #ef7918;
}
.handshake img {
width: 78px;
height: auto;
margin: 0 0;
}
/* Intro Text */
.editorial-intro p {
margin: 0;
font-size: 14px;
line-height: 1.5;
color: #242b35;
}
/* Editorial Card */
.editor-card {
border: 1px solid #d9d9d9;
background: #ffffff;
text-align: center;
overflow: hidden;
}
/* Member Image */
.editor-image {
width: 100%;
height: 220px;
overflow: hidden;
}
.editor-image img {
    width: 100%;
    height: 274px;
    object-fit: cover;
    display: block;
}
/* Member Details */
.editor-content {
min-height: 130px;
padding: 10px 10px 14px;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
.editor-content h3 {
margin: 0 0 6px;
font-size: 16px;
font-weight: 600;
color: #087f8c;
}
.editor-content p {
margin: 0;
font-size: 13px;
line-height: 1.55;
color: #252b35;
}
.editor-content span {
margin-top: auto;
padding-top: 18px;
font-size: 14px;
color: #252b35;
}
/* Tablet */
@media (max-width: 1100px) {
.editorial-section {
grid-template-columns: repeat(3, 1fr);
}
.editorial-intro {
grid-column: span 3;
margin-bottom: 15px;
}
.editor-image {
height: 240px;
}
}
/* Mobile */
@media (max-width: 700px) {
.editorial-section {
grid-template-columns: 1fr;
gap: 20px;
padding: 20px 15px;
}
.editorial-intro {
grid-column: auto;
margin-bottom: 10px;
}
.editorial-intro h2 {
font-size: 24px;
}
.editorial-intro h3 {
font-size: 20px;
}
.editor-card {
max-width: 400px;
width: 100%;
margin: auto;
}
.editor-image {
height: 300px;
}
}
/* =========================================
FAST-TRACK PUBLICATION SECTION
========================================= */
.fast-track-section {width: 100%;padding: 28px;background: #ffffff;border: 1px solid #e5e7eb;/* border-radius: 24px; */box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);box-sizing: border-box;}
/* =========================================
TOP HEADING
========================================= */
.fast-track-heading {
display: flex;
align-items: center;
gap: 16px;
margin: 0 0 32px 18px;
}
.fast-track-heading span {
font-size: 14px;
font-weight: 700;
letter-spacing: 2px;
color: #0d326b;
}
.fast-track-heading strong {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 7px 15px;
border-radius: 30px;
background: linear-gradient(
135deg,
#352060,
#702a8d
);
color: #ffffff;
font-size: 13px;
font-weight: 600;
}
/* =========================================
MAIN BANNER
========================================= */
.fast-track-banner {position: relative;overflow: hidden;padding: 28px 40px 40px;border-radius: 24px;background:
radial-gradient(
circle at 5% 20%,
rgba(52, 186, 214, 0.25),
transparent 20%
),
radial-gradient(
circle at 92% 10%,
rgba(111, 44, 170, 0.30),
transparent 25%
),
linear-gradient(
120deg,
#071b3f,
#111b4a 55%,
#241c62
);color: #ffffff;}
/* Grid Pattern */
.fast-track-banner::before {
content: "";
position: absolute;
inset: 0;
opacity: 0.12;
background-image:
linear-gradient(
rgba(255,255,255,0.18) 1px,
transparent 1px
),
linear-gradient(
90deg,
rgba(255,255,255,0.18) 1px,
transparent 1px
);
background-size: 40px 40px;
pointer-events: none;
}
/* Decorative Waves */
.decorative-waves {
position: absolute;
right: -50px;
bottom: -100px;
width: 500px;
height: 260px;
border-radius: 50%;
border-top: 2px solid rgba(88, 87, 255, 0.35);
border-bottom: 2px solid rgba(88, 87, 255, 0.35);
transform: rotate(-15deg);
opacity: 0.7;
}
.decorative-waves::before,
.decorative-waves::after {
content: "";
position: absolute;
inset: 25px;
border-radius: 50%;
border-top: 2px solid rgba(88, 87, 255, 0.3);
border-bottom: 2px solid rgba(88, 87, 255, 0.3);
}
.decorative-waves::after {
inset: 50px;
}
/* =========================================
INTRO CONTENT
========================================= */
.fast-track-intro {
position: relative;
z-index: 2;
display: flex;
align-items: flex-start;
gap: 42px;
max-width: 1200px;
margin: 0 auto;
}
/* Lightning Icon */
.fast-track-icon {
flex: 0 0 105px;
width: 105px;
height: 105px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 2px solid rgba(255, 176, 0, 0.6);
background: rgba(8, 32, 71, 0.8);
font-size: 62px;
line-height: 1;
box-shadow:
0 0 0 10px rgba(38, 125, 205, 0.08),
0 0 0 20px rgba(38, 125, 205, 0.04);
}
/* Intro Text */
.fast-track-content h1 {margin: 0 0 11px;font-size: clamp(28px, 2vw, 44px);line-height: 1.2;font-weight: 700;letter-spacing: -1px;}
.fast-track-content h1 span {
color: #ffae00;
}
.fast-track-content p {max-width: 1050px;margin: 0;font-size: 16px;line-height: 1.65;color: #f5f7ff;}
/* =========================================
TIMELINE
========================================= */
.timeline {position: relative;z-index: 2;display: grid;grid-template-columns: repeat(4, 1fr);gap: 22px;max-width: 1200px;margin: 10px auto 40px;}
/* Connecting Line */
.timeline::before {content: "";position: absolute;top: 35px;left: 10%;right: 10%;border-top: 2px dotted rgba(255, 255, 255, 0.8);z-index: 0;}
/* Timeline Item */
.timeline-item {
position: relative;
padding-top: 48px;
}
/* Timeline Icon */
.timeline-icon {position: absolute;z-index: 3;top: 16px;left: 50%;transform: translateX(-50%);width: 62px;height: 62px;display: flex;align-items: center;justify-content: center;border-radius: 50%;border: 5px solid #ffffff;color: #ffffff;font-size: 34px;box-shadow: 0 7px 15px rgba(0, 0, 0, 0.25);}
/* Icon Colors */
.day-one .timeline-icon {background: #1e9ed3;}
.day-three .timeline-icon {
background: #6746bb;
}
.day-seven .timeline-icon {
background: #ed670d;
}
.day-fourteen .timeline-icon {
background: #dc3d67;
}
/* Timeline Cards */
.timeline-card {min-height: 120px;padding: 30px 20px 24px;display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;background: #ffffff;border-radius: 18px;box-shadow: 6px 6px 0 rgba(28, 159, 212, 0.7),
0 10px 30px rgba(0, 0, 0, 0.18);box-sizing: border-box;}
/* Card Accent Colors */
.day-three .timeline-card {
box-shadow:
8px 8px 0 rgba(103, 70, 187, 0.8),
0 10px 30px rgba(0, 0, 0, 0.18);
}
.day-seven .timeline-card {
box-shadow:
8px 8px 0 rgba(237, 103, 13, 0.8),
0 10px 30px rgba(0, 0, 0, 0.18);
}
.day-fourteen .timeline-card {
box-shadow:
8px 8px 0 rgba(220, 61, 103, 0.8),
0 10px 30px rgba(0, 0, 0, 0.18);
}
.timeline-card h2 {margin: 0 0 0px;font-size: 24px;font-weight: 700;color: #1b5eb0;}
.day-three .timeline-card h2 {
color: #6546b5;
}
.day-seven .timeline-card h2 {
color: #e8630d;
}
.day-fourteen .timeline-card h2 {
color: #d83d66;
}
.timeline-card p {margin: 0;font-size: 14px;line-height: 1.45;color: #17213c;}
/* =========================================
BUTTONS
========================================= */
.fast-track-buttons {
position: relative;
z-index: 2;
display: flex;
align-items: center;
gap: 28px;
max-width: 1200px;
margin: 0 auto;
}
.fast-track-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* Primary Button */
.fast-track-buttons .btn-primary {
color: #ffffff;
background: linear-gradient(
100deg,
#1c9ce2,
#a844d3
);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(76, 96, 220, 0.4);
}
/* Secondary Button */
.btn-secondary {
color: #ffffff;
border: 2px solid #ffffff;
background: transparent;
}
.btn-secondary:hover {
background: #ffffff;
color: #16265a;
}
/* =========================================
TABLET
========================================= */
@media (max-width: 1000px) {
.fast-track-banner {
padding: 45px 30px;
}
.fast-track-intro {
gap: 25px;
}
.fast-track-content p {
font-size: 17px;
}
.timeline {
grid-template-columns: repeat(2, 1fr);
row-gap: 40px;
}
.timeline::before {
display: none;
}
}
/* =========================================
MOBILE
========================================= */
@media (max-width: 650px) {
.fast-track-section {
padding: 15px;
border-radius: 16px;
}
.fast-track-heading {
margin-left: 5px;
flex-wrap: wrap;
gap: 10px;
}
.fast-track-heading span {
font-size: 11px;
}
.fast-track-banner {
padding: 35px 20px;
border-radius: 18px;
}
.fast-track-intro {
flex-direction: column;
align-items: center;
text-align: center;
gap: 25px;
}
.fast-track-icon {
width: 80px;
height: 80px;
flex-basis: 80px;
font-size: 45px;
}
.fast-track-content h1 {
font-size: 28px;
}
.fast-track-content p {
font-size: 15px;
line-height: 1.6;
}
.timeline {
grid-template-columns: 1fr;
gap: 35px;
margin-top: 45px;
}
.timeline-card {
min-height: 160px;
}
.timeline-card h2 {
font-size: 27px;
}
.timeline-card p {
font-size: 16px;
}
.fast-track-buttons {
flex-direction: column;
align-items: stretch;
gap: 15px;
}
.fast-track-buttons a {
width: 100%;
box-sizing: border-box;
font-size: 16px;
}
}
/* ==========================================
   BJSTR ABOUT PAGE (3 COLUMN LAYOUT)
   Matches homepage design
========================================== */

.about-page{
    background:#f6f9fc;
    padding:70px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:260px 1fr 260px;
    gap:30px;
    align-items:start;
}

/* ==========================================
   SIDEBARS
========================================== */

.about-sidebar{
    position:sticky;
    top:30px;
}

.sidebar-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    margin-bottom:25px;
    box-shadow:0 12px 30px rgba(13,44,84,.08);
    border:1px solid #edf2f7;
}

.sidebar-card h3{
    font-size:20px;
    color:#0d2c54;
    margin-bottom:18px;
    position:relative;
    padding-bottom:10px;
}

.sidebar-card h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:3px;
    background:var(--primary);
    border-radius:3px;
}

.sidebar-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-card ul li{
    padding:10px 0;
    border-bottom:1px solid #eef2f7;
    color:#555;
    font-size:15px;
    line-height:1.6;
}

.sidebar-card ul li:last-child{
    border-bottom:none;
}

.sidebar-card a{
    display:block;
    padding:12px 15px;
    margin-bottom:10px;
    background:#f8fbff;
    border-radius:10px;
    color:#0d2c54;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.sidebar-card a:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateX(5px);
}

/* ==========================================
   MAIN CONTENT
========================================== */

.about-content{
    min-width:0;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 18px 45px rgba(13,44,84,.08);
}
.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.content-card h1 {
    font-size: 24px;
    color: #0d2c54;
    margin-bottom: 10px;
    line-height: 1.2;
}

.content-card h2 {
    font-size: 20px;
    color: #05616b;
    margin: 20px 0 10px;
    position: relative;
    padding-left: 18px;
}
.content-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 24px;
    background: #05616b;
    border-radius: 3px;
}

.content-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.content-card ul{
    padding-left:22px;
    margin:15px 0 25px;
}

.content-card ul li{
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
    list-style-type: none;
}

/* ==========================================
   STATS CARD
========================================== */

.stats-card .stat-item{
    text-align:center;
    padding:18px 0;
    border-bottom:1px solid #eef2f7;
}

.stats-card .stat-item:last-child{
    border-bottom:none;
}

.stats-card strong{
    display:block;
    font-size:24px;
    color:#0d6efd;
    font-weight:800;
}

.stats-card span{
    color:#666;
    font-size:14px;
}

/* ==========================================
   CTA CARD
========================================== */

.cta-card{
    background:linear-gradient(135deg,#0d2c54,#0d6efd);
    color:#fff;
    text-align:center;
}

.cta-card h3{
    color:#fff;
}

.cta-card h3::after{
    background:#fff;
}

.cta-card p{
    color:#eaf3ff;
    line-height:1.8;
    margin-bottom:22px;
}

.btn-submit{
    display:inline-block;
    width:100%;
    padding:14px 18px;
    background:#fff;
    color:#0d2c54;
    text-decoration:none;
    font-weight:700;
    border-radius:12px;
    transition:.3s;
}

.btn-submit:hover{
    background:#0d2c54;
    color:#fff;
}

/* ==========================================
   HIGHLIGHT BOX
========================================== */

.highlight-box{
    background:#f8fbff;
    border-left:5px solid #0d6efd;
    padding:25px;
    border-radius:14px;
    margin:30px 0;
}

.highlight-box h3{
    color:#0d2c54;
    margin-bottom:10px;
}

/* ==========================================
   TABLE
========================================== */

.about-table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
    border-radius:12px;
    overflow:hidden;
}

.about-table th{
    background:#0d2c54;
    color:#fff;
    padding:16px;
    text-align:left;
}

.about-table td{
    padding:15px 16px;
    border-bottom:1px solid #e5e7eb;
}

.about-table tr:nth-child(even){
    background:#f8fbff;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1200px){

    .about-grid{
        grid-template-columns:220px 1fr 220px;
        gap:22px;
    }

    .content-card{
        padding:40px;
    }
}

@media (max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-sidebar{
        position:relative;
        top:0;
    }

    .left-sidebar{
        order:2;
    }

    .about-content{
        order:1;
    }

    .right-sidebar{
        order:3;
    }

    .content-card h1{
        font-size:36px;
    }
}

@media (max-width:768px){

    .about-page{
        padding:50px 0;
    }

    .content-card{
        padding:30px 24px;
    }

    .content-card h1{
        font-size:30px;
    }

    .content-card h2{
        font-size:24px;
    }

    .sidebar-card{
        padding:22px;
    }
}

@media (max-width:480px){

    .content-card h1{
        font-size:26px;
    }

    .content-card p{
        font-size:15px;
    }

    .sidebar-card h3{
        font-size:18px;
    }
}