/* Top Banner Fix - Center alignment and visible icon */
.top-banner {
    background: #fff;
    color: #232F25;
    padding: 0.875rem 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    border-bottom: 2px solid #FAF9F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.top-banner i {
    color: #CA623F;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-banner strong {
    color: #CA623F;
}

/* Ensure Font Awesome icons load properly */
.top-banner .fa-fire {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 0.85rem;
        padding: 0.75rem 0;
    }
    
    .top-banner .container {
        padding: 0 1rem;
    }
    
    .top-banner i {
        font-size: 1rem;
    }
}
