/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

/* Header */
header {
    background: linear-gradient(to right, #6ec661, #e8861a);
    padding: 15px;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav ul li {
    display: inline;
    font-weight: bold;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px;
    display: inline-block;
    transition: all 0.2s ease;
}
nav ul li a:hover {
    background-color: white;
    color: rgb(3, 57, 157);
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

/* Layout */
.container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    padding: 20px;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

/* Sidebar */
aside {
    background: #1b2a3a;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

/* Main */
main {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* Title Styles */
h1.effective {
    background: linear-gradient(to right, black, #ff1e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
}

h3.effective {
    color: #FFA500;
    border-left: 5px solid #2E8B57;
    padding-left: 12px;
    background-color: #2E8B57;
}

/* Welcome Card */
.welcome-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.welcome-title {
    font-size: 26px;
    color: #003366;
}

/* Editorial Board */
.editorial-board {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    padding: 20px;
}

/* Section Title */
.editorial-board h3 {
    background: #003366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 22px;
}

/* Board Card */
.eb-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    border-left: 5px solid #003366;
    transition: 0.3s;
}
.eb-card:hover {
    transform: translateY(-5px);
}

/* List */
.eb-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eb-card ul li {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px dashed #ccc;
}
.eb-card ul li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: #1b2a3a;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

/* Copyright */
#templatemo_copyright_wrapper {
    background: #0f1a25;
    padding: 25px 0;
}
#templatemo_copyright {
    width: 90%;
    margin: auto;
    background: #152333;
    padding: 20px 25px;
    border-radius: 8px;
    color: #dcdcdc;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
