* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 32px;
    color: #4CAF50;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 10px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #4CAF50;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4CAF50;
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Banner */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
    margin: 5px;
}

.btn:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #2c3e50;
}

/* About Section */
.about {
    padding: 60px 0 40px 0;  /* Reduced from 80px 0 */
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #7f8c8d;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-list {
    list-style: none;
    margin-top: 25px;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.values-list i {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

/* Journals Section */
.journals {
    padding: 40px 0 60px 0;  /* Reduced from 80px 0 */
    background-color: #f8f9fa;
}

.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.journal-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #4CAF50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.new-tag {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.journal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.journal-img {
    width: 80px;
    height: 80px;
    background-color: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.journal-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.journal-desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.journal-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: #7f8c8d;
}

.view-more {
    align-self: flex-start;
    padding: 8px 20px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.view-more:hover {
    background-color: #4CAF50;
}

/* For Authors & Editors Sections */
.audience-section {
    padding: 80px 0;
    background-color: white;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.audience-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.audience-card h3 i {
    margin-right: 15px;
    color: #4CAF50;
}

.audience-card ul {
    list-style: none;
    margin-top: 20px;
}

.audience-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.audience-card ul li i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 4px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #4CAF50;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.news-card p {
    margin-bottom: 20px;
    color: #555;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #4CAF50;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #4CAF50;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Form Styles */
form input,
form textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 992px) {
    .audience-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .journal-card, .news-card {
        margin-bottom: 20px;
    }
    
    .journal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .journal-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav ul {
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn {
        margin: 5px 0;
    }
}
/* Dropdown Menu Styles */
nav ul li {
    position: relative;
}

.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: block !important;
    font-weight: 400 !important;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #4CAF50 !important;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: #4CAF50;
    width: 16px;
    text-align: center;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    .dropdown-menu a {
        color: white !important;
        padding: 10px 10px 10px 30px !important;
    }
    
    nav ul li:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .has-dropdown > a::after {
        content: '\f107';
        float: right;
    }
    
    .has-dropdown > a.expanded::after {
        content: '\f106';
    }
}
/* Dropdown Menu Styles - Fixed */
.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center;
    font-weight: 400 !important;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: #f8f9fa;
    color: #4CAF50 !important;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: #4CAF50;
    width: 16px;
    text-align: center;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    .dropdown-menu a {
        color: white !important;
        padding: 10px 10px 10px 30px !important;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .has-dropdown > a::after {
        content: '\f107';
        float: right;
    }
    
    .has-dropdown > a.expanded::after {
        content: '\f106';
    }
}

/* Why Publish With Us Section */
.why-publish {
    
	padding: 80px 0 -05px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 0px;
    flex-wrap: wrap;
}

.benefit-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #3e8e41 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
    font-family: 'Merriweather', serif;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefit-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stats-section {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100%;
    }
}
/* Journal Detail Page Styles */
.journal-detail-page {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.journal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.journal-sidebar {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: start;
    position: sticky;
    top: 100px;
}

.journal-menu h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.journal-menu ul {
    list-style: none;
    margin-bottom: 30px;
}

.journal-menu li {
    margin-bottom: 10px;
}

.journal-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.journal-menu a:hover,
.journal-menu a.active {
    color: #4CAF50;
}

.journal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3e8e41;
}

.btn-secondary {
    background-color: #2c3e50;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #1a2530;
}

.journal-info-box {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
}

.journal-info-box h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-item {
    margin-bottom: 10px;
    font-size: 14px;
}

.journal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.journal-header {
    margin-bottom: 30px;
}

.journal-header h1 {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.journal-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
}

.journal-image {
    margin-bottom: 30px;
}

.journal-image img {
    width: 100%;
    border-radius: 8px;
    height: 300px;
    object-fit: cover;
}

.journal-section {
    margin-bottom: 40px;
}

.journal-section h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.journal-section h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 20px 0 15px;
}

.journal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.journal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.journal-section li {
    margin-bottom: 8px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.editor {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.editor h4 {
    font-size: 16px;
    color: #4CAF50;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .journal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journal-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .journal-header h1 {
        font-size: 28px;
    }
    
    .editorial-grid {
        grid-template-columns: 1fr;
    }
}


/* css for for authors*/

/* Page Layout for Content with Sidebar */
.page-container {
    display: flex;
    gap: 30px;
    margin-top: -20px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar-menu li a.active,
.sidebar-menu li a:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.content {
    flex-grow: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* css for for authors submission*/

/* Page Layout for Content with Sidebar */
/* Page Layout for Content with Sidebar */
.page-container {
    padding: 30px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.sidebar-menu li a.active,
.sidebar-menu li a:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.content {
    flex-grow: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* Mobile-specific styles to reorder elements */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
    }
    .sidebar {
        width: 100%;
        margin-top: 20px;
    }
    .content {
        padding: 15px;
    }
}