/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.btn-primary {
    background: #28a745;
    color: #fff;
}

.btn-outline {
    border: 2px solid #28a745;
    color: #28a745;
    background: none;
}

.btn:hover {
    opacity: 0.9;
}

/* Header */
.main-header {
    background: #f4f4f4;
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    background: #28a745;
}

.nav-list {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #e9f5ea;
}

.hero h1 {
    color: #28a745;
    font-size: 2.5rem;
}

/* Highlights */
.highlights {
    padding: 40px 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.highlight {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card h3 {
    color: #28a745;
}

/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

/* Call-to-Action Section */
.call-to-action {
    padding: 40px 20px;
    background: #e9f5ea;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cta-text {
    flex: 1 1 50%;
}

.cta-text h2 {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 20px;
}

.cta-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-image {
    flex: 1 1 40%;
    text-align: center;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        margin-bottom: 20px;
    }
}

/* Footer Section Styling */
.main-footer {
    background-color: #2a5d31;
    color: #ffffff;
    padding: 40px 20px;
    font-size: 14px;
}

.main-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    flex: 1 1 20%;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 16px;
    color: #f5f5f5;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #3cb371;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3cb371;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links li {
    display: inline;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.social-links a:hover {
    color: #3cb371;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ffffff33;
    padding-top: 20px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #3cb371;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

.cover-page {
    margin: 50px 0;
}

.cover-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cover-image {
    max-width: 300px;
    height: auto;
    border: 2px solid #006400;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cover-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cover-text .btn {
    margin-top: 15px;
}

.caption {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    color: #666;
}

/* Main content styling */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Editorial section */
.editorial {
    margin-top: 40px;
}

/* Title styling */
.section-title h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.section-title hr {
    width: 50%;
    border: 1px solid #000;
    margin: 0 auto;
}

/* Editorial content layout */
.editorial-content {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Column layout */
.column {
    flex: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.column h4 {
    font-size: 1.5em;
    color: #004085;
    margin-bottom: 10px;
}

.column p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Bold text for names and titles */
.column b {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-content {
        flex-direction: column;
        align-items: center;
    }

    .column {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    .section-title h3 {
        font-size: 1.8em;
    }
}

/* Container for the Publishing Policy */
.policy-container {
    background-color: #f9f9f9;
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

/* Title styling */
.policy-container h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* Paragraph Styling */
.policy-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 15px;
}

/* Emphasis for important notes */
.policy-container p strong {
    font-weight: bold;
    color: #e74c3c;
}

/* Adding some spacing for the entire content */
.policy-container p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
        margin: 10px;
    }

    .policy-container h3 {
        font-size: 1.8rem;
    }

    .policy-container p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
#contact-page {
    padding: 40px 0;
    text-align: center;
}

#contact-page h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

#contact-page p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 30px;
}

/* Contact Form Styles */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

#contact-form label {
    font-size: 1.1rem;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

#contact-form .btn-submit {
    background-color: #2c3e50;
    color: white;
    font-size: 1.2rem;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form .btn-submit:hover {
    background-color: #34495e;
}

.main-content {
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
}

.contents-section {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #4CAF50;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.issue-title {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.journal-article {
    margin-bottom: 20px;
}

.article-link {
    color: #00796b;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #004d40;
}

.author {
    color: #757575;
    font-size: 16px;
    margin-top: 5px;
}

.publish-section-title {
    color: #333;
    font-size: 22px;
    text-align: center;
    margin-top: 40px;
}

.publish-link {
    color: #00796b;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.publish-link:hover {
    color: #004d40;
    text-decoration: underline;
}

.archives-section {
    margin-top: 40px;
}

.archives-title {
    color: #333;
    font-size: 22px;
    text-align: left;
    margin-bottom: 20px;
}

.archives-title a {
    color: #085e5e;
    font-size: 22px;
    text-align: left;
    margin-bottom: 20px;
}

.archive-link {
    color: #00796b;
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
    transition: color 0.3s ease;
}

.archive-link:hover {
    color: #004d40;
    text-decoration: underline;
}

