/* Text Styles and Typography Improvements */
.entry-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.entry-content p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.entry-content h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    color: #104a9c;
    font-weight: 700;
}

.entry-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #104a9c;
    font-weight: 700;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.entry-content li {
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.entry-content strong {
    font-weight: 700;
    color: #104a9c;
}

/* Responsive text */
@media (max-width: 768px) {
    .entry-content {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .entry-content h2 {
        font-size: 1.5em;
    }
    
    .entry-content h3 {
        font-size: 1.3em;
    }
}

