.hub-header {
    text-align: center !important;
    margin: 0 !important;
    top: 65px !important;
    position: sticky !important;
    z-index: 50 !important;
}

.hub-header h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #00ffcc !important;
    margin: 0 !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .hub-header h1 {
        font-size: 2rem !important;
    }
}

body {
    font-family: Arial, sans-serif !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 2rem !important;
    background-color: #f9f9f9 !important;
    color: #333 !important;
}

.post-title h2 {
    text-align: left !important;
}

.container {
    direction: ltr !important;
    max-width: 800px !important;
    margin: auto !important;
    background: #fff !important;
    padding: 2rem !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
    color: #222 !important;
}

p {
    font-size: 1.3rem !important;
    margin-bottom: 1.25rem !important;
    text-align: justify !important;
}

section p::before {
    content: "🎯" !important;
}

strong {
    color: #000 !important;
}

.flex-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}

.flex-container img {
    width: 100px;
    height: auto;
    display: block;
}

.flex-container .title {
    font-size: 1.5rem;
    margin-left: 10px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .flex-container {
        flex-direction: column;
        text-align: center;
    }

    .flex-container .title {
        margin: 10px 0 0 0;
    }
}