/* custom.css - Custom styling for the journal index page */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F8F6F1;
    color: #232323;
}

.ijhae-container {
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Top bar */
.ijhae-topbar {
    background-color: #0E2E29;
    color: #FFFFFF;
    font-size: 12px;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
}

.ijhae-topbar a {
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 10px;
}

.ijhae-topbar a:hover {
    color: #C8A25A;
}

/* Header Area */
.ijhae-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFFFFF;
}

.ijhae-logo h1 {
    margin: 0;
    font-size: 26px;
    color: #0B3A32;
}

.ijhae-logo p {
    margin: 0;
    font-size: 14px;
    color: #7A5633;
}

.ijhae-call-for-papers {
    background-image: url('../public/callbutton.webp');
    background-size: cover;
    background-position: center;
    width: 550px;
    min-height: 110px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    box-sizing: border-box;
}

.ijhae-call-for-papers-text h3 {
    margin: 0 0 5px 0;
    color: #0B3A32;
    font-size: 20px;
}

.ijhae-call-for-papers-text span {
    font-size: 13px;
    color: #5B5B5B;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}

.ijhae-btn-submit {
    background-color: #0B3A32;
    color: #FFFFFF;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
}

.ijhae-btn-submit:hover {
    background-color: #123F36;
}

/* Navigation */
.ijhae-nav {
    background-color: #0B3A32;
    padding: 0;
}

.ijhae-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.ijhae-nav li {
    position: relative;
}

.ijhae-nav a {
    display: block;
    padding: 14px 18px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
}

.ijhae-nav a:hover,
.ijhae-nav li.active a {
    background-color: #650E0C;
    color: #FFFFFF;
}

.ijhae-nav .ijhae-nav-contact a {
    border: 1px solid #ffffff;
    border-radius: 3px;
    padding: 8px 15px;
    margin: 7px 0 7px 15px;
    line-height: 1;
}

.ijhae-nav .ijhae-nav-contact a:hover {
    background-color: #ffffff;
    color: #0B3A32;
    border-top: 1px solid #ffffff;
}

/* Hero Banner */
.ijhae-hero {
    background-color: #EFE6D3;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    background-image: linear-gradient(rgba(11, 58, 50, .75), rgba(11, 58, 50, .75)), url('../public/hero.webp');
    background-size: cover;
    background-position: center;
}

.ijhae-hero h2 {
    font-size: 32px;
    margin: 0;
    color: #FFFFFF;
}

.ijhae-hero p {
    font-size: 20px;
    margin-top: 10px;
    color: #E6D0A0;
}

/* Main Layout */
.ijhae-main {
    display: flex;
    padding: 20px;
    gap: 20px;
    background-color: #F8F6F1;
}

.ijhae-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.ijhae-content {
    flex-grow: 1;
}

/* Sidebar Widgets */
.ijhae-widget {
    border: 1px solid #DDD5C6;
    margin-bottom: 20px;
    background-color: #FFFFFF;
}

.ijhae-widget-title {
    background-color: #0B3A32;
    color: #FFFFFF;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

.ijhae-widget-title.red {
    background-color: #0B3A32;
    border-bottom: 3px solid #C8A25A;
}

.ijhae-widget-title.teal {
    background-color: #123F36;
}

.ijhae-widget-content {
    padding: 15px;
}

.ijhae-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.ijhae-menu li {
    border-bottom: 1px solid #ECE8DF;
}

.ijhae-menu li:last-child {
    border-bottom: none;
}

.ijhae-menu a {
    display: block;
    padding: 10px;
    color: #232323;
    text-decoration: none;
    font-size: 13px;
}

.ijhae-menu a:hover {
    background-color: #F8F6F1;
    color: #0B3A32;
}


/* Content Area */
.ijhae-journal-info {
    display: flex;
    gap: 20px;
    border: 1px solid #DDD5C6;
    background-color: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

.ijhae-journal-cover {
    width: 200px;
    flex-shrink: 0;
}

.ijhae-journal-cover img {
    max-width: 100%;
    height: auto;
}

.ijhae-journal-details table {
    width: 100%;
    border-collapse: collapse;
}

.ijhae-journal-details td {
    padding: 5px 10px;
    font-size: 14px;
}

.ijhae-journal-details td strong {
    color: #0B3A32;
}

.ijhae-about-section {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ijhae-about-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #232323;
}

.ijhae-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5B5B5B;
}

.ijhae-about-cover {
    flex: 0 0 250px;
}

.ijhae-about-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.ijhae-section-title {
    color: #8c2626;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: bold;
}

.ijhae-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #C8A25A;
}

.ijhae-home-issue {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ECE8DF;
}

.ijhae-home-issue-cover {
    flex: 0 0 268px;
}

.ijhae-home-issue-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ijhae-home-issue-details {
    flex: 1;
}

.ijhae-badge-gold {
    background-color: #C8A25A;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.ijhae-home-issue-details h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #232323;
}

.ijhae-home-issue-date {
    font-size: 13px;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.ijhae-home-issue-stats-container {
    display: flex;
    gap: 50px;
}

.ijhae-home-issue-stats {
    flex: 0 0 auto;
}

.ijhae-stat-item {
    margin-bottom: 20px;
}

.ijhae-stat-label {
    font-size: 13px;
    color: #5B5B5B;
    display: block;
    margin-bottom: 5px;
}

.ijhae-stat-value {
    font-size: 18px;
    color: #8c2626;
    font-weight: bold;
}

.ijhae-featured-article {
    flex: 1;
    padding-left: 50px;
}

.ijhae-featured-label {
    color: #C8A25A;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.ijhae-featured-title {
    font-size: 15px;
    font-weight: bold;
    color: #232323;
    line-height: 1.4;
    margin-bottom: 15px;
}

.ijhae-featured-author {
    font-size: 13px;
    color: #5B5B5B;
}

.ijhae-btn-view-all {
    background-color: #650E0C;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    font-size: 13px;
}

.ijhae-btn-view-all:hover {
    background-color: #8B1E1A;
}

.ijhae-indexing {
    border: 1px solid #DDD5C6;
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.ijhae-indexing h4 {
    margin-top: 0;
    color: #0B3A32;
}

.ijhae-indexing img {
    height: 40px;
    margin: 10px;
    vertical-align: middle;
}

/* Buttons */
.ijhae-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #C8A25A;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    font-size: 13px;
    margin-right: 10px;
}

.ijhae-btn:hover {
    background-color: #A97A32;
}

.ijhae-btn-outline {
    background-color: transparent;
    color: #0B3A32;
    border: 2px solid #0B3A32;
}

.ijhae-btn-outline:hover {
    background-color: #0B3A32;
    color: #FFFFFF;
}

/* Footer */
.ijhae-footer {
    background-color: #09241F;
    color: #FFFFFF;
    padding: 40px 20px 20px;
    display: flex;
    justify-content: space-between;
}

.ijhae-footer-col {
    flex: 1;
    margin-right: 20px;
}

.ijhae-footer-col h4 {
    color: #E6D0A0;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding-bottom: 10px;
}

.ijhae-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ijhae-footer-col li {
    margin-bottom: 8px;
}

.ijhae-footer-col a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
}

.ijhae-footer-col a:hover {
    color: #C8A25A;
}

.ijhae-copyright {
    background-color: #061915;
    color: #FFFFFF;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    border-top: 2px solid #650E0C;
}

/* Secondary Pages Specific Styles */
.ijhae-page-header {
    background-image: linear-gradient(rgba(11, 58, 50, .75), rgba(11, 58, 50, .75)), url('../public/hero.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 60px 20px;
    color: #FFFFFF;
}

.ijhae-page-header h2 {
    font-size: 36px;
    margin: 0;
    color: #FFFFFF;
}

.ijhae-page-header .breadcrumbs {
    font-size: 14px;
    margin-top: 10px;
    color: #E6D0A0;
}

.ijhae-page-header .breadcrumbs a {
    color: #FFFFFF;
    text-decoration: none;
}

.ijhae-page-header .breadcrumbs a:hover {
    color: #C8A25A;
}

/* Editorial Board Layout */
.ijhae-board-section {
    margin-bottom: 40px;
}

.ijhae-board-section h3 {
    color: #0B3A32;
    border-bottom: 1px solid #DDD5C6;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 22px;
}

.ijhae-board-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ijhae-board-card {
    border: 1px solid #DDD5C6;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #FFFFFF;
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
}

.ijhae-board-info h4 {
    margin: 0 0 5px 0;
    color: #0B3A32;
    font-size: 16px;
}

.ijhae-board-info p {
    margin: 0;
    font-size: 12px;
    color: #5B5B5B;
    line-height: 1.4;
}

.ijhae-board-info .email {
    color: #7A5633;
    margin-top: 5px;
    display: block;
}

/* Issue / Archives Styles */
.ijhae-issue-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.ijhae-issue-cover {
    flex: 0 0 29%;
}

.ijhae-issue-cover img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.ijhae-issue-meta {
    flex: 1;
}

.ijhae-issue-meta h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #0B3A32;
}

.ijhae-article-list-title {
    color: #0B3A32;
    font-size: 20px;
    border-bottom: 2px solid #C8A25A;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.ijhae-article-item {
    display: flex;
    border-bottom: 1px solid #ECE8DF;
    padding: 15px 0;
}

.ijhae-article-type {
    width: 150px;
    font-weight: bold;
    color: #5B5B5B;
    font-size: 14px;
}

.ijhae-article-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #0B3A32;
}

.ijhae-article-doi {
    font-size: 12px;
    color: #C8A25A;
}

.ijhae-btn-pdf {
    display: inline-block;
    border: 1px solid #C8A25A;
    color: #C8A25A;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

/* Archives Accordion */
.ijhae-archive-year {
    border: 1px solid #DDD5C6;
    margin-bottom: 10px;
    background-color: #FFFFFF;
}

.ijhae-archive-year-header {
    background-color: #F8F6F1;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    color: #0B3A32;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.ijhae-archive-issues table {
    width: 100%;
    border-collapse: collapse;
}

.ijhae-archive-issues th,
.ijhae-archive-issues td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ECE8DF;
    font-size: 14px;
}

/* For Authors Layout */
/* About & Submissions Layout */
.ijhae-about-layout {
    background-color: #F8F6F1;
    padding: 40px 0;
}

.ijhae-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .ijhae-about-container {
        flex-direction: column;
    }
}

.ijhae-authors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ijhae-authors-card {
    flex: 1 1 calc(25% - 20px);
    /* 4 cards per row */
    min-width: 200px;
    border: 1px solid #DDD5C6;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
}

.ijhae-authors-card .icon {
    font-size: 30px;
    color: #C8A25A;
    margin-bottom: 10px;
}

.ijhae-authors-card h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #0B3A32;
}

.ijhae-authors-card p {
    font-size: 13px;
    color: #5B5B5B;
    margin-bottom: 15px;
}

.ijhae-authors-card a {
    color: #C8A25A;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ijhae-main {
        flex-direction: column;
    }

    .ijhae-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .ijhae-home-issue {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ijhae-home-issue-cover {
        flex: 0 0 auto;
    }

    .ijhae-home-issue-cover img {
        max-width: 200px;
        margin: 0 auto;
    }

    .ijhae-home-issue-stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .ijhae-featured-article {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid #ECE8DF;
    }

    .ijhae-footer {
        flex-direction: column;
        text-align: center;
    }

    .ijhae-footer-stats {
        flex-direction: column;
        gap: 20px;
    }

    .ijhae-nav {
        position: relative;
    }

    .ijhae-nav>ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        right: 10px;
        width: 250px;
        background: #0B3A32;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 10px 0;
        margin-top: -38px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .ijhae-nav>ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .ijhae-nav .ijhae-dropdown-menu {
        position: static !important;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.15);
        width: 100%;
        min-width: auto;
        padding: 5px 0;
        margin-top: 5px;
    }

    .ijhae-nav .ijhae-dropdown-menu a {
        padding: 10px 20px;
        font-size: 12px;
        font-weight: normal;
    }

    .ijhae-nav a {
        padding: 15px 20px;
        font-size: 13px;
        border: none !important;
        border-radius: 0;
    }

    .ijhae-nav li.active>a {
        background-color: #650E0C;
    }

    .ijhae-nav li.ijhae-dropdown>a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .ijhae-nav .ijhae-nav-contact a {
        margin: 0;
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: block !important;
    }

    .ijhae-topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ijhae-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        position: relative;
    }
}

@media (max-width: 480px) {
    .ijhae-hero h2 {
        font-size: 20px !important;
    }

    .ijhae-hero p {
        font-size: 14px !important;
    }
}

/* Auth Pages Layout */
.ijhae-auth-layout {
    display: flex;
    min-height: calc(100vh - 200px);
    background-color: #F8F6F1;
}

.ijhae-auth-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.ijhae-auth-overlay {
    background-color: rgba(11, 58, 50, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.ijhae-auth-overlay h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.ijhae-auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.ijhae-auth-divider::before,
.ijhae-auth-divider::after {
    content: '';
    height: 1px;
    width: 50px;
    background-color: #C8A25A;
    margin: 0 15px;
}

.ijhae-auth-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ijhae-auth-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item .icon {
    font-size: 30px;
    color: #C8A25A;
}

.feature-item span {
    font-size: 13px;
    font-weight: bold;
}

.ijhae-auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
}

.ijhae-auth-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
}

.auth-card-large {
    max-width: 650px;
}

.ijhae-auth-card h2 {
    text-align: center;
    color: #0B3A32;
    margin-bottom: 10px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 40px 12px 40px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    max-width: 100%;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-with-icon .input-icon-right {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
}

.standard-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    background: white;
    max-width: 100%;
}

.form-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    cursor: pointer;
}

.forgot-password {
    color: #8c2626;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary {
    background-color: #0B3A32;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #12594d;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.auth-or-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #999;
    font-size: 12px;
}

.auth-or-divider::before,
.auth-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #eee;
}

.auth-or-divider span {
    padding: 0 15px;
}

.btn-outline {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

.auth-terms {
    margin-top: 25px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.auth-terms a {
    color: #8c2626;
    font-weight: bold;
}

/* Register page specifics */
.ijhae-auth-left-light {
    background-color: #F0EEE9;
    background-image: none;
    color: #333;
}

.ijhae-auth-sidebar-content {
    max-width: 350px;
    text-align: center;
}

.ijhae-auth-sidebar-content h2 {
    color: #0B3A32;
    font-size: 28px;
    margin: 10px 0;
}

.subtitle {
    color: #555;
    margin-bottom: 30px;
}

.ijhae-auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    margin-bottom: 40px;
}

/* Auth Page specific classes */
.ijhae-auth-left-login {
    background-image: url('../public/hero.webp');
}

.ijhae-auth-left-register {
    background-image: url('../public/register-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.ijhae-auth-left-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(240, 238, 233, 0.85);
}

.ijhae-auth-sidebar-inner {
    position: relative;
    z-index: 1;
}

.ijhae-auth-divider-icon-md {
    font-size: 24px;
}

.ijhae-auth-divider-icon-lg {
    font-size: 30px;
    color: #C8A25A;
}

.ijhae-auth-divider-icon-gold {
    color: #C8A25A;
}

.ijhae-auth-divider-mb-20 {
    margin-bottom: 20px;
}

.ijhae-auth-divider-mb-30 {
    margin-bottom: 30px;
}

.ijhae-auth-form-error {
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
}

.ijhae-auth-icon-gold {
    color: #C8A25A;
}

.ijhae-auth-checkbox-input {
    margin-top: 3px;
}

.ijhae-auth-terms-center {
    text-align: center;
    margin-top: 15px;
}

flex-direction: column;
gap: 25px;
text-align: left;
margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e1d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-text p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #666;
}

.auth-existing {
    font-size: 14px;
    font-weight: bold;
}

.auth-existing a {
    color: #8c2626;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
    width: 100%;
}

.required {
    color: #8c2626;
}

.form-checkbox {
    margin-bottom: 5px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    font-weight: normal;
}

@media (max-width: 992px) {
    .ijhae-auth-layout {
        flex-direction: column;
        min-height: auto;
    }

    .ijhae-auth-left {
        display: none;
    }

    .ijhae-auth-right {
        padding: 40px 20px;
        width: 100%;
    }

    .ijhae-auth-card {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .ijhae-auth-features {
        gap: 15px;
    }

    .feature-item span {
        font-size: 11px;
    }

    .ijhae-auth-overlay p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .ijhae-auth-overlay h1 {
        font-size: 28px;
    }
}

/* Global FontAwesome overrides */
.fa-solid,
.fa-brands,
.fa-regular {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
}

/* Footer New Layout */
.ijhae-footer {
    background-color: #0B3A32;
    color: #fff;
    padding: 60px 20px 40px;
    font-size: 13px;
}

.ijhae-footer-content {

    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    display: flex;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Col 1: Logo */
.footer-col-info {
    flex: 2;
}

.footer-logo {
    align-items: center;
    gap: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 45px;
    color: #fff;
}

.footer-logo-text {
    font-size: 14px;
    line-height: 1.3;
}

.footer-logo-text .gold-text {
    color: #C8A25A;
}

.footer-desc {
    color: #cbd5d1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #cbd5d1;
    border-radius: 50%;
    color: #cbd5d1;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background-color: #C8A25A;
    border-color: #C8A25A;
    color: #fff;
}

/* Col 2: Quick Links */
.footer-col-links {
    flex: 3;
}

.links-grid {
    display: flex;
    gap: 30px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.links-grid li {
    margin-bottom: 12px;
}

.links-grid a {
    color: #cbd5d1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-grid a i {
    font-size: 10px;
}

.links-grid a:hover {
    color: #C8A25A;
}

/* Col 3: Contact */
.footer-col-contact {
    flex: 1.5;
}

.footer-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-contact li {
    display: flex;
    gap: 12px;
    color: #cbd5d1;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-col-contact li i {
    margin-top: 3px;
}

/* Col 4: Newsletter */
.footer-col-newsletter {
    flex: 1.5;
}

.footer-col-newsletter p {
    color: #cbd5d1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 13px;
}

.newsletter-form button {
    background-color: #8c2626;
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #6a1b1b;
}

/* Copyright Bar */
.ijhae-copyright {
    background-color: #8c2626;
    color: #e8d0d0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .ijhae-footer-content {
        flex-wrap: wrap;
    }

    .footer-col-info {
        flex: 100%;
        max-width: 100%;
    }

    .footer-col-links,
    .footer-col-contact,
    .footer-col-newsletter {
        flex: 45%;
    }
}

@media (max-width: 768px) {

    .footer-col-links,
    .footer-col-contact,
    .footer-col-newsletter {
        flex: 100%;
    }

    .ijhae-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Archive Page Layout */
.ijhae-archive-layout {
    display: flex;
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.ijhae-archive-sidebar {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ijhae-archive-main {
    flex: 1;
}

/* Sidebar Widgets */
.archive-widget {
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.archive-widget h3 {
    margin: 0;
    padding: 12px 15px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.widget-bg-red h3 {
    background-color: #8c2626;
}

.widget-bg-green h3 {
    background-color: #0B3A32;
}

.widget-bg-gold h3 {
    background-color: #A68B5C;
    color: #fff;
}

.archive-widget-content {
    padding: 15px;
}

.archive-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.archive-widget ul li:last-child {
    border-bottom: none;
}

.archive-widget ul li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-widget ul li a i {
    color: #8c2626;
    width: 15px;
    text-align: center;
}

.archive-widget ul li a:hover {
    color: #8c2626;
}

.widget-subscribe {
    background-color: #0B3A32;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.widget-subscribe h3 {
    background: none;
    padding: 0;
    margin-bottom: 5px;
    font-size: 16px;
    border: none;
}

.widget-subscribe p {
    font-size: 12px;
    margin-bottom: 15px;
}

.widget-downloads {
    background-color: #8c2626;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
}

.widget-downloads h3 {
    background: none;
    padding: 0;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}

.widget-downloads p {
    font-size: 12px;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.4;
}

.widget-downloads .dl-btn {
    display: inline-block;
    background: #fff;
    color: #8c2626;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.widget-indexed-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-indexed-logos img {
    max-width: 100%;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

/* Accordion */
.archive-accordion {
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 15px;
    background: #fff;
}

.accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fafafa;
    border-bottom: 1px solid transparent;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header.active {
    border-bottom: 1px solid #eee;
}

.accordion-title {
    font-weight: bold;
    color: #8c2626;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-badge {
    background: #fdf5e6;
    color: #666;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    border: 1px solid #f0e6d2;
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0;
}

.accordion-content.active {
    display: block;
}

/* Archive Table */
.archive-table {
    width: 100%;
    border-collapse: collapse;
}

.archive-table th {
    text-align: left;
    padding: 12px 20px;
    font-size: 12px;
    color: #333;
    background: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.archive-table td {
    padding: 15px 20px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    color: #555;
    vertical-align: middle;
}

.archive-table tr:last-child td {
    border-bottom: none;
}

.btn-view-issue {
    background: #8c2626;
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-view-issue:hover {
    background: #6a1b1b;
}

/* Responsive */
@media (max-width: 768px) {
    .ijhae-archive-layout {
        flex-direction: column;
    }

    .ijhae-archive-sidebar {
        flex: auto;
    }

    .archive-table,
    .archive-table tbody,
    .archive-table tr,
    .archive-table td,
    .archive-table th {
        display: block;
    }

    .archive-table thead {
        display: none;
    }

    .archive-table tr {
        margin-bottom: 15px;
        border: 1px solid #eee;
    }

    .archive-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .archive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #333;
    }
}


/* Indexing Logos (Home Page) */
.ijhae-indexed-logos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.ijhae-indexed-logo-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ijhae-indexed-logo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ijhae-indexed-logo-box img {
    max-height: 40px;
    width: auto;
}

.owl-carousel .ijhae-indexed-logo-box img {
    width: auto !important;
    max-width: 100%;
    margin: 0 auto;
    display: inline-block;
}

/* Fix Flexbox Overflow for Owl Carousel */
.ijhae-content,
.ijhae-search-content,
.ijhae-archive-main {
    min-width: 0;
}

.ijhae-indexing,
.ijhae-widget-content {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Privacy Page Layout */
.ijhae-privacy-intro {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.ijhae-privacy-intro .intro-text {
    flex: 1;
}

.ijhae-privacy-intro .cope-box {
    flex: 0 0 200px;
    text-align: center;
    border: 1px solid #EEE;
    padding: 20px;
    background: #FAFAFA;
}

.ijhae-privacy-intro .cope-box h2 {
    font-size: 28px;
    margin: 0;
    letter-spacing: 5px;
    color: #333;
}

.ijhae-privacy-intro .cope-box .cope-title {
    font-size: 10px;
    font-weight: bold;
    margin: 10px 0;
}

.ijhae-privacy-intro .cope-box .cope-member {
    font-size: 12px;
    margin: 0;
}

.ijhae-privacy-intro .cope-box .cope-member span {
    color: #993366;
}

.ijhae-privacy-commitment {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ijhae-privacy-commitment .commitment-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.ijhae-privacy-commitment .commitment-img {
    flex: 0 0 250px;
}

.ijhae-privacy-commitment .commitment-img img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Home Page Content Styles */
.ijhae-section-title {
    color: #8c2626 !important;
    font-size: 20px;
    font-weight: bold;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEE;
    position: relative;
}

.ijhae-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background-color: #C8A25A;
}

.ijhae-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.ijhae-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ijhae-feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #486a5a;
    color: #486a5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ijhae-feature-text {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.ijhae-chevron-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

.ijhae-chevron-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.ijhae-chevron-list li::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #555;
    font-weight: bold;
}

.ijhae-table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

.ijhae-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    border: 1px solid #EAEAEA;
}

.ijhae-table td {
    padding: 15px 15px;
    border: 1px solid #EAEAEA;
}

.ijhae-table .ijhae-th {
    font-weight: bold;
    background-color: #FAFAFA;
    width: 30%;
    color: #333;
}

.ijhae-table-icon {
    margin-right: 12px;
    color: #2b4f42;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Submissions Page Layout */
.ijhae-submission-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.ijhae-submission-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 1;
}

.ijhae-submission-step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ijhae-submission-step .step-icon {
    width: 60px;
    height: 60px;
    background-color: #8c2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
}

.ijhae-submission-step strong {
    display: block;
    font-size: 14px;
}

.ijhae-submission-step span {
    font-size: 12px;
    color: #666;
}

.ijhae-before-submit {
    background-color: #f1f8eb;
    border: 1px solid #d0e6c5;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ijhae-before-submit-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ijhae-before-submit-content .icon {
    background-color: #52633c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ijhae-before-submit-content strong {
    font-size: 15px;
    color: #333;
}

.ijhae-before-submit-content p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #555;
}

.ijhae-btn-submit-manuscript {
    background-color: #1a2f26;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    flex-shrink: 0;
    text-align: center;
}

/* Archives Page Filter Bar */
.ijhae-archive-filter-bar {
    background-color: #F8F6F1;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.ijhae-archive-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.ijhae-archive-filter-group span {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.ijhae-archive-filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.ijhae-btn-view {
    background: #0B3A32;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}

.ijhae-archive-search-form {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
    justify-content: flex-end;
}

.ijhae-archive-search-form input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size: 13px;
    width: 60%;
}

.ijhae-archive-search-form button {
    background: #8c2626;
    color: white;
    border: none;
    padding: 9px 15px;
    display: flex;
    gap: 5px;
    font-weight: bold;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 13px;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile / Tablets)
   ========================================= */

@media (max-width: 900px) {

    .ijhae-main,
    .ijhae-main-wrapper,
    .ijhae-archive-layout {
        flex-direction: column;
    }

    .ijhae-sidebar,
    .ijhae-sidebar-left,
    .ijhae-archive-sidebar {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    /* Header & Top Bar */
    .ijhae-topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .ijhae-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .ijhae-mobile-logo-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ijhae-call-for-papers {
        display: none !important;
    }

    /* Mobile Navigation (Hamburger) */
    .mobile-menu-toggle {
        display: block !important;
    }

    /* Layouts */
    .ijhae-content,
    .ijhae-search-content,
    .ijhae-archive-main {
        width: 100%;
        padding: 0% !important;
    }

    .ijhae-hero {
        padding: 40px 15px !important;
    }

    .ijhae-hero {
        padding: 40px 15px !important;
    }

    .ijhae-hero h2 {
        font-size: 22px !important;
    }

    .ijhae-about-section {
        flex-direction: column-reverse !important;
    }

    .ijhae-about-cover {
        margin-top: 0;
        margin-bottom: 20px;
        width: 100% !important;
        text-align: center;
    }

    .ijhae-about-cover img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
    }

    .ijhae-home-issue {
        flex-direction: column !important;
    }

    .ijhae-home-issue-cover {
        margin-right: 0 !important;
        margin-top: 20px;
        width: 100% !important;
        text-align: center;
    }

    .ijhae-home-issue-details h3,
    .ijhae-issue-meta h3 {
        font-size: 18px !important;
    }

    .ijhae-btn {
        padding: 6px 10px !important;
        font-size: 11px !important;
        display: inline-block !important;
        margin-bottom: 5px !important;
        margin-right: 5px !important;
    }

    .ijhae-mission-vision {
        flex-direction: row !important;
        gap: 10px;
    }

    .ijhae-issue-header {
        flex-direction: column !important;
    }

    .ijhae-article-list-title {
        font-size: 18px !important;
    }

    .ijhae-archive-filter-bar {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 15px 10px !important;
    }

    .ijhae-archive-filter-group {
        flex-direction: column !important;
        align-items: stretch !important;
        min-width: 100% !important;
    }

    .ijhae-archive-search-form {
        min-width: 100% !important;
        justify-content: center !important;
    }

    .ijhae-archive-search-form input {
        width: 100% !important;
    }

    .ijhae-submission-steps {
        flex-direction: column;
        gap: 20px;
    }

    .ijhae-privacy-intro,
    .ijhae-privacy-commitment {
        flex-direction: column;
    }

    .ijhae-privacy-intro .cope-box,
    .ijhae-privacy-commitment .commitment-img {
        flex: 1;
        width: 100%;
    }

    .ijhae-submission-line {
        display: none;
    }

    .ijhae-before-submit {
        flex-direction: column;
        align-items: flex-start;
    }

    .ijhae-before-submit-content {
        align-items: flex-start;
    }

    .ijhae-btn-submit-manuscript {
        width: 87%;
        margin-top: 10px;
    }

    .ijhae-features-grid {
        grid-template-columns: 1fr;
    }

    .ijhae-chevron-list {
        columns: 1 !important;
        -webkit-columns: 1 !important;
        -moz-columns: 1 !important;
    }
}

@media (max-width: 425px) {
    .ijhae-logo h1 {
        font-size: 18px !important;
    }

    .ijhae-logo i {
        font-size: 30px !important;
    }

    .ijhae-topbar {
        font-size: 11px;
    }
}

@media (max-width: 370px) {
    .ijhae-logo h1 {
        font-size: 16px !important;
    }

    .ijhae-logo i {
        font-size: 26px !important;
    }
}

@media (max-width: 320px) {
    .ijhae-logo h1 {
        font-size: 14px !important;
    }

    .ijhae-logo i {
        font-size: 22px !important;
    }
}

.ijhae-apc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
    color: #333;
}

.ijhae-apc-th {
    border: 1px solid #DDD;
    padding: 12px;
    background: #F8F9FA;
    text-align: left;
    color: #0B3A32;
    font-weight: bold;
}

.ijhae-apc-td {
    border: 1px solid #DDD;
    padding: 12px;
}

/* Dropdown Navigation */
.ijhae-nav li.ijhae-dropdown {
    position: relative;
}

.ijhae-nav li.ijhae-dropdown .ijhae-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0B3A32;
    min-width: 220px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ijhae-nav li.ijhae-dropdown:hover .ijhae-dropdown-menu {
    display: block;
}

.ijhae-nav li.ijhae-dropdown .ijhae-dropdown-menu li {
    display: block;
    float: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ijhae-nav li.ijhae-dropdown .ijhae-dropdown-menu li:last-child {
    border-bottom: none;
}

.ijhae-nav li.ijhae-dropdown .ijhae-dropdown-menu li a {
    padding: 12px 20px;
    font-size: 13px;
    display: block;
    color: #FFF;
    text-align: left;
    transition: background-color 0.2s, color 0.2s;
}

.ijhae-nav li.ijhae-dropdown .ijhae-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #C8A25A;
}

/* Auto-extracted Inline Styles */
.ijhae-page-content-wrapper {
    padding: 0 30px;
    background: #fff;
}

.ijhae-page-title {
    color: #0B3A32;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #EEE;
}

.ijhae-text-block {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.ijhae-text-block-large {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.ijhae-text-block-outro {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ijhae-btn-container {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.ijhae-btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #0B3A32;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.ijhae-btn-primary:hover {
    background: #123F36;
}

.ijhae-sidebar-right {
    margin-left: 0;
}

.ijhae-breadcrumb-link {
    color: #fff;
    text-decoration: none;
}

.ijhae-breadcrumb-active {
    color: #d9b89b;
}

.ijhae-two-columns {
    column-count: 2;
    column-gap: 40px;
    margin-bottom: 25px;
}

.cmp_form input[type="text"],
.cmp_form input[type="email"],
.cmp_form input[type="password"],
.cmp_form input[type="url"],
.cmp_form input[type="tel"],
.cmp_form select {
    max-width: 100%;
}