.publication-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.submission-note {
    background: #f8f9fa;
    border-left: 4px solid #009688;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.fee-table th {
    background: #009688;
    color: #fff;
    padding: 12px;
    text-align: center;
}

.fee-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.fee-table tr:nth-child(even) {
    background: #f8f9fa;
}

.fee-table tr:hover {
    background: #eef8f7;
}

.info-box {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-box h3 {
    margin-top: 0;
    color: #009688;
    font-size: 20px;
    font-weight: 600;
}

.info-box ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.info-box li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .fee-table {
        display: block;
        overflow-x: auto;
    }

    .publication-content {
        font-size: 14px;
    }

}