/* article-style.css */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #4299e1;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --font-serif: 'Times New Roman', Times, serif;
    --font-sans: Arial, Helvetica, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.journal-header {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    color: #4a5568;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.page-number {
    font-size: 14px;
    text-align: right;
    margin-bottom: 10px;
    color: #4a5568;
}

.udc {
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
    color: #4a5568;
}

h1 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.authors {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.affiliations {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
}

.email {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.abstract-section {
    background-color: var(--light-bg);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
}

.abstract-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.keywords {
    margin-top: 15px;
    font-style: italic;
}

.keywords strong {
    font-weight: bold;
}

.content {
    margin-top: 30px;
}

h2 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    text-indent: 1.5em;
}

.reference {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    text-indent: -20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

th, td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: left;
}

th {
    background-color: var(--light-bg);
    font-weight: bold;
}

.journal-info {
    font-size: 14px;
    color: #4a5568;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.section-number {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    color: var(--primary-color);
}

.figure-container {
    margin: 25px 0;
    text-align: center;
}

.figure-image {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.figure-caption {
    font-size: 14px;
    font-style: italic;
    color: #4a5568;
    text-align: center;
    margin-top: 5px;
}

.formula {
    text-align: center;
    margin: 20px 0;
    font-family: monospace;
    font-size: 16px;
    padding: 10px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.formula-inline {
    font-family: monospace;
    font-size: 14px;
}

ul, ol {
    margin-left: 40px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 16px;
    }
}