
/* Base Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333333;
}

/* Container for Journal Pages */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background-color: #002147;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.header h1 {
    margin: 0;
    font-size: 36px;
}

.header h2 {
    margin: 10px 0;
    font-size: 28px;
}

.header p {
    font-size: 18px;
    margin-top: 10px;
}

/* Journal Article Section */
.article-section {
    margin-top: 30px;
}

.article-section h3 {
    color: #002147;
    font-size: 24px;
}

.article-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Sidebar */
.sidebar {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.sidebar h4 {
    color: #002147;
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

.sidebar ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.sidebar a {
    color: #C9A227;
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #002147;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-radius: 10px;
}

.footer p {
    font-size: 16px;
    margin: 0;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #C9A227;
    color: #002147;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: #A9881D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 28px;
    }

    .header h2 {
        font-size: 22px;
    }

    .article-section h3 {
        font-size: 20px;
    }

    .sidebar {
        margin-top: 15px;
    }

    .sidebar ul li {
        font-size: 14px;
    }

    .footer p {
        font-size: 14px;
    }
}
