body {
    background: #f8fafb;
    color: #202124;
    font-family: Arial, sans-serif;
}

.navbar-brand {
    letter-spacing: 1px;
}

main {
    min-height: 70vh;
}

.hero {
    padding: 80px 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.post-card {
    background: #ffffff;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.post-card .card-body {
    padding: 25px;
}

.post-title {
    color: #202124;
    text-decoration: none;
}

.post-title:hover {
    text-decoration: underline;
}

.post-meta {
    font-size: 14px;
    color: #777;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.pagination .page-link {
    color: #0f3d4c;
    border-color: #d9e5e5;
    background-color: #ffffff;
    border-radius: 8px;
    margin: 0 3px;
}

.pagination .page-link:hover {
    color: #ffffff;
    background-color: #1b5e65;
    border-color: #1b5e65;
}

.pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #0f3d4c;
    border-color: #0f3d4c;
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}