*{margin:0;padding:0;box-sizing:border-box}
body
{
 font-family:'Poppins',sans-serif;
 background:#f5f7fb;color:#333
}
header{
background:#003366;
color:#fff;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo h2{
margin:0;
font-size:28px;
}

.logo p{
margin:0;
font-size:14px;
}
nav a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-weight:500;
position:relative;
display:inline-block;
transition:0.3s;
}

nav a:hover{
color:#2E8B57;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#09ef6c;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}
nav{
display:flex;
align-items:center;
}

/* dropdown container */
.dropdown{
position:relative;
}

/* first submenu */
.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#003366;
min-width:180px;
display:none;
flex-direction:column;
padding:10px 0;
border-radius:6px;
}

/* submenu links */
.dropdown-menu a{
padding:10px 20px;
display:block;
margin:0;
color:#fff;
}

/* show first submenu */
.dropdown:hover .dropdown-menu{
display:block;
}

/* second submenu container */
.dropdown-sub
{
position:relative;
}

/* second submenu */
.dropdown-submenu
{
position:absolute;
top:0;
left:100%;
background:#003366;
min-width:180px;
display:none;
padding:10px 0;
border-radius:6px;
}

/* show second submenu */
.dropdown-sub:hover .dropdown-submenu{
display:block;
}

/* hover effect */
.dropdown-menu a:hover
{
background:#2E8B57;
color:#fff;
}

.hero
{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),url(../images/bnr3.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff
}
.hero h1
{
    font-size:52px;
    margin-bottom:15px
}
.hero p
{
    font-size:20px;
    margin-bottom:25px
}
.btn
{
    background:#2e8b57;
    color:#fff;
    padding:14px 28px;
    border:none;
    border-radius:5px;
    text-decoration:none;
    font-weight:600
}
section
{
    padding:30px 8%
}
.section-title
{
    text-align:center;
    margin-bottom:50px
}
.section-title h2
{
    font-size:34px;
    color:#003366
}
.about
{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center
}
.objectives
{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.objective-card
{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
position:relative;
transition:all .35s ease;
border-left:5px solid #003366;
height:230px;
overflow:hidden;
}

.objective-card p
{
font-size:15px;
line-height:1.7;
margin-top:15px;
color:#444;
overflow-y:auto;
height:150px;
padding-right:5px;
}

.objective-card:hover
{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.card-number
{
position:absolute;
top:15px;
right:15px;
background:#003366;
color:#fff;
font-size:16px;
font-weight:600;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.events
{
padding:80px 8%;
background:#f7f9fc;
}

.events-grid
{
display:grid;
grid-template-columns:2fr 1fr 1fr;
grid-auto-rows:220px;
gap:25px;
}

.event-card
{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.35s;
display:flex;
flex-direction:column;
}

.event-card img
{
width:100%;
height:140px;
object-fit:cover;
}

.event-card h4
{
padding:15px;
font-size:16px;
color:#003366;
}

.event-card.large
{
grid-row:span 2;
}

.event-card.large img
{
height:260px;
}

.event-content
{
padding:20px;
}

.event-content h3
{
margin-bottom:10px;
color:#003366;
}

.event-content p
{
font-size:14px;
line-height:1.6;
margin-bottom:10px;
}

.event-date
{
font-size:13px;
color:#2E8B57;
font-weight:500;
}

.event-card:hover
{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.help{
padding:70px 8%;
background:#f7f9fc;
}

.help-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.help-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.4s;
}

.help-image img:hover{
transform:scale(1.05);
}

.help-content h2{
font-size:34px;
color:#003366;
margin-bottom:15px;
}

.help-content p{
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:25px;
}

.help-buttons a{
display:inline-block;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:500;
margin-right:15px;
transition:0.3s;
}

.btn-primary{
background:#2E8B57;
color:#fff;
}

.btn-primary:hover{
background:#256f45;
}

.btn-secondary{
border:2px solid #2E8B57;
color:#2E8B57;
}

.btn-secondary:hover{
background:#2E8B57;
color:#fff;
}
.newsletter{
background:#2E8B57;
padding:70px 20px;
text-align:center;
color:#fff;
margin-bottom: 30px;
}

.newsletter h2{
font-size:32px;
margin-bottom:10px;
}

.newsletter-form{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
max-width:700px;
margin:auto;
}

.newsletter-form input{
padding:14px 15px;
border:none;
border-radius:6px;
width:220px;
font-size:14px;
outline:none;
}

.newsletter-form button{
padding:14px 28px;
background:#003366;
color:#fff;
border:none;
border-radius:6px;
font-size:14px;
font-weight:500;
cursor:pointer;
transition:0.3s;
}

.newsletter-form button:hover{
background:#001f3f;
}
.footer{
background:#003366;
color:#fff;
padding:60px 20px 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer-col h3{
font-size:24px;
margin-bottom:15px;
}

.footer-col h4{
font-size:18px;
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.7;
color:#ddd;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#2E8B57;
}

.footer-col a{
color:#ddd;
text-decoration:none;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.footer-bottom p{
font-size:14px;
margin:0;
}

.scroll-top{
background:#2E8B57;
color:#fff;
padding:8px 12px;
border-radius:5px;
text-decoration:none;
font-size:18px;
}
.contact{
padding:70px 0;
background:#f7f9fc;
}

.contact-top h2{
text-align:center;
margin-bottom:40px;
color:#003366;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.map iframe{
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.contact-form h3{
margin-bottom:20px;
color:#003366;
}

.contact-bottom form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-bottom input,
.contact-bottom textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
outline:none;
transition:0.3s;
}

.contact-bottom input:focus,
.contact-bottom textarea:focus{
border-color:#2E8B57;
box-shadow:0 0 5px rgba(46,139,87,0.2);
}

.contact-bottom textarea{
min-height:120px;
resize:none;
}

.submit-btn button{
background:#2E8B57;
color:#fff;
border:none;
padding:12px;
border-radius:6px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.submit-btn button:hover{
background:#1f6f47;
}
.container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}
@media(max-width:768px){.about{grid-template-columns:1fr}.hero h1{font-size:36px}}
.journal-section{
padding:70px 8%;
background:#f7f9fc;
}

.journal-container{
max-width:900px;
margin:auto;
background:#fff;
padding:50px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Titles */

.journal-title{
text-align:center;
font-size:36px;
color:#003366;
margin-bottom:10px;
}

.journal-subtitle{
text-align:center;
font-size:22px;
color:#2E8B57;
margin-bottom:5px;
}

.journal-location{
text-align:center;
color:#777;
margin-bottom:40px;
font-size:15px;
}

/* Section headings */

.journal-heading{
font-size:20px;
margin-top:35px;
margin-bottom:15px;
color:#003366;
border-left:4px solid #2E8B57;
padding-left:10px;
}

/* Paragraph styling */

.journal-container p{
font-size:15px;
line-height:1.8;
margin-bottom:15px;
color:#444;
}

/* Lists */

.journal-list{
margin-left:20px;
margin-bottom:25px;
}

.journal-list li{
margin-bottom:8px;
font-size:15px;
}

/* Email highlight */

.highlight{
color:#2E8B57;
font-weight:600;
}

/* Editorial signature */

.editor-sign{
text-align:right;
margin-top:40px;
font-size:16px;
}

/* Responsive */

@media(max-width:768px){

.journal-container{
padding:30px;
}

.journal-title{
font-size:28px;
}

.journal-subtitle{
font-size:18px;
}

}
.journal-header{
background:#f4f8fb;
padding:60px 8%;
}

.journal-header-container{
display:flex;
align-items:center;
gap:40px;
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
flex-wrap:wrap;
}

/* Left Image */

.journal-left img{
width:120px;
border-radius:6px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* Right Content */

.journal-right h1{
font-size:28px;
color:#003366;
margin-bottom:10px;
}

.journal-model{
font-size:15px;
margin-bottom:20px;
color:#555;
}

.journal-model span{
color:#2E8B57;
font-weight:600;
}

/* Buttons */

.journal-buttons{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.journal-buttons a{
text-decoration:none;
padding:10px 18px;
border:1px solid #003366;
color:#003366;
border-radius:25px;
font-size:14px;
transition:0.3s;
}

.journal-buttons a:hover{
background:#2E8B57;
color:#fff;
border-color:#2E8B57;
}

/* MAINTENANCE SECTION */

.maintenance{
text-align:center;
padding:120px 20px;
font-size:20px;
font-weight:600;
color:#888;
}

/* RESPONSIVE */

@media(max-width:768px){

.journal-header-container{
flex-direction:column;
text-align:center;
}

.journal-buttons{
justify-content:center;
}

}
/* MAIN SECTION */

.journal-content{
padding:60px 8%;
background:#f9fbfd;
}

/* SECTION TITLE */

.section-title{
font-size:26px;
color:#003366;
margin-bottom:20px;
border-left:5px solid #2E8B57;
padding-left:12px;
}

/* CONTENT BOX */

.content-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-bottom:40px;
line-height:1.8;
color:#444;
}

/* GRID CARDS */

.grid-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-bottom:40px;
}

.card{
background:#fff;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h4{
color:#2E8B57;
margin-bottom:10px;
}

/* LIST STYLE */

.styled-list{
columns:2;
padding-left:20px;
}

.styled-list li{
margin-bottom:15px;
font-size: 16px;
  color: #333;
}

.styled-list li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}


/* RESPONSIVE */

@media(max-width:768px){

.styled-list{
columns:1;
}

.styled-list li p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

}
.card:hover{
transform:translateY(-8px) scale(1.02);
}
/* SECTION */
.pages{
padding:70px 8%;
}

/* HEADING */
.pages-top h2{
text-align:center;
font-size:32px;
color:#003366;
margin-bottom:10px;
}

.pages-top h4{
text-align:justify;
font-size:15px;
color:#555;
max-width:1000px;
margin:0 auto 30px auto;
line-height:1.7;
}

/* TABLE DESIGN */
table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
margin-bottom:50px;
}

/* HEADER */
th{
background:#2E8B57;
color:#fff;
padding:12px;
font-size:14px;
text-align:left;
}

/* BODY */
td{
padding:12px;
font-size:14px;
color:#444;
border-bottom:1px solid #eee;
}

/* ROW HOVER */
tr:hover{
background:#f1fdf6;
}

/* ZEBRA */
tr:nth-child(even){
background:#fafafa;
}

/* RESPONSIVE */
@media(max-width:768px){
.pages{
padding:40px 5%;
}

.pages-top h2{
font-size:24px;
}
}
.gallery{
padding:70px 8%;
background:#f7f9fc;
}

/* Title */
.gallery-top h2{
text-align:center;
font-size:32px;
color:#003366;
margin-bottom:40px;
}

/* GRID (FIXED) */
.gallery-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:20px;
}

/* ITEM */
.gallery-item{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
height:220px;
}

/* BIG IMAGE */
.gallery-item.large{
grid-column:1 / -1;   /* full width */
height:350px;
}

/* IMAGE */
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

/* HOVER */
.gallery-item:hover img{
transform:scale(1.08);
}

/* OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,51,102,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.overlay h3{
color:#fff;
font-size:18px;
text-align:center;
padding:0 10px;
}

.gallery-item:hover .overlay{
opacity:1;
}

/* RESPONSIVE */
@media(max-width:768px){
.gallery-grid{
grid-template-columns:1fr;
}

.gallery-item,
.gallery-item.large{
height:220px;
}
}
.certificate-wrapper{
text-align:center;
margin-top:30px;
}

.certificate-wrapper img{
max-width:100%;
width:500px;          /* control size */
height:auto;
display:inline-block;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.abouta {
  padding: 80px 8%;
  background: linear-gradient(135deg, #f8fafc, #eef3f9);
}

/* Title */
.about-top {
  text-align: center;
  margin-bottom: 60px;
}

.about-top h2 {
  font-size: 36px;
  color: #003366;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-top h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #2E8B57;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Layout */
.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.04);
}

/* Content Card */
.about-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
}

/* Decorative left border */
.about-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 5px;
  height: 60px;
  background: #2E8B57;
  border-radius: 5px;
}

/* Text */
.about-content h4 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    gap: 40px;
  }

  .about-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .abouta {
    padding: 60px 5%;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-top h2 {
    font-size: 28px;
  }

  .about-content {
    padding: 25px;
  }

  .about-content h4 {
    font-size: 18px;
  }
}
.rules {
  padding: 80px 8%;
  background: #f7f9fc;
}

.ssection-header {
  text-align: center;
  margin-bottom: 60px;
}

.ssection-header h2 {
  font-size: 34px;
  color: #003366;
  position: relative;
}

.ssection-header h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2E8B57;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID */
.rules-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.rules-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.rules-image img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.rules-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.rule-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-left: 4px solid #2E8B57;
}

.rule-card:hover {
  transform: translateY(-5px);
}

.rule-card h4 {
  color: #003366;
  margin-bottom: 10px;
}

.rule-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.rules-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch; /* KEY */
  margin-top: 30px;
}

/* CARD */
.rules-card {
  background: #ffffff;
  padding: 20px 20px 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  border-left: 4px solid #2E8B57;
  display: flex;
  flex-direction: column;

  height: 100%; /* equal height */
}

/* TITLE */
.rules-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #003366;
  flex-shrink: 0;
}

/* CONTENT AREA WITH SCROLL */
.rules-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 6px;
}

/* SCROLLABLE CONTENT WRAPPER */
.rules-card {
  max-height: 260px; /* adjust as needed */
  overflow-y: auto;
}

/* CUSTOM SCROLLBAR (modern look) */
.rules-card::-webkit-scrollbar {
  width: 6px;
}

.rules-card::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.rules-card::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* HOVER */
.rules-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.rules-text {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* HEADING */
.rules-text h3 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 25px;
}

/* ACCORDION ITEM */
.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

/* HEADER BUTTON */
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #003366;
  position: relative;
}

/* PLUS ICON */
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-header::after {
  content: "−";
}

/* CONTENT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

/* SHOW CONTENT */
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 10px 16px 20px;
}

/* BULLETS */
.accordion-content ul {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #444;
}

/* HOVER */
.accordion-header:hover {
  background: #f4f7fb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rules-text {
    padding: 25px;
  }

  .accordion-header {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .rules-card {
    max-height: 220px;
  }
}

/* RESPONSIVE */
@media(max-width:768px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .ssection-header h2 {
    font-size: 26px;
  }
}
/* ===== TEAM SECTION ===== */
.team {
  padding: 80px 8%;
  background: #f4f7fb;
}

/* HEADING */
.team-top {
  text-align: center;
  margin-bottom: 50px;
}

.team-top h3 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #666;
  font-size: 15px;
}

/* GRID */
.team-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* INFO */
.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 18px;
  color: #003366;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team {
    padding: 60px 5%;
  }

  .team-top h3 {
    font-size: 26px;
  }

  .team-card img {
    height: 200px;
  }
}
.maintenance-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 20px;
  background: #f9fafb;
}

.maintenance-box {
  text-align: center;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 500px;
  width: 100%;
}

.maintenance-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.maintenance-box h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.maintenance-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 480px) {
  .maintenance-box {
    padding: 30px 20px;
  }

  .maintenance-box h2 {
    font-size: 20px;
  }

  .maintenance-box p {
    font-size: 14px;
  }
}
/* Layout */
.journal-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* Main content */
.journal-main {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 60px;
}

/* Sidebar */
.journal-sidebar {
  background: #f9fafb;
  padding: 25px;
  border-radius: 10px;
  height: fit-content;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Typography */
.section-titles {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitles {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.journal-main p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

/* Divider */
.section-dividers {
  height: 1px;
  background: #e5e7eb;
  margin: 25px 0;
}

/* List */
.modern-list {
  padding-left: 20px;
}

.modern-list li {
  margin-bottom: 8px;
  color: #444;
}

/* Sidebar links */
.journal-sidebar ul {
  list-style: none;
  padding: 0;
}

.journal-sidebar li {
  margin-bottom: 10px;
}

.journal-sidebar a {
  text-decoration: none;
  color: #007bff;
  transition: 0.3s;
}

.journal-sidebar a:hover {
  color: #0056b3;
}

/* Editorial team */
.editorial-team {
  margin-top: 30px;
  text-align: right;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .journal-sidebar {
    margin-top: 20px;
  }
}