* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f2f2f2;
    color: #111;
}

/* HEADER */
.site-header {
    background: #ffffff;
    text-align: center;
    padding: 15px 10px;
    border-bottom: 2px solid #0b3d91;
}

.site-header h1 {
    color: #0b3d91;
    font-size: 26px;
}

.site-header p {
    font-size: 14px;
    color: #555;
}

/* NAVIGATION */
.top-nav {
    background: #0b3d91;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top-nav a {
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 14px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.top-nav a:hover {
    background: #082c6c;
}

/* MAIN */
.main-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

/* GRID */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-box {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 12px;
}

.grid-box h3 {
    background: #0b3d91;
    color: #fff;
    font-size: 15px;
    padding: 6px 8px;
    margin-bottom: 10px;
}

.grid-box ul {
    list-style: none;
}

.grid-box ul li {
    margin-bottom: 6px;
}

.grid-box ul li a {
    text-decoration: none;
    color: #0b3d91;
    font-size: 13px;
}

.grid-box ul li a:hover {
    color: #c60000;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: 30px;
    font-size: 13px;
}

/* TICKER */
.ticker-wrapper {
    display: flex;
    align-items: center;
    background: #fff3cd;
    border-top: 2px solid #0b3d91;
    border-bottom: 2px solid #0b3d91;
    padding: 6px 10px;
    overflow: hidden;
}

.ticker-label {
    font-weight: bold;
    color: #0b3d91;
    margin-right: 10px;
    white-space: nowrap;
}

.ticker {
    overflow: hidden;
    flex: 1;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
}

.ticker-move a {
    margin-right: 40px;
    text-decoration: none;
    color: #c60000;
    font-size: 14px;
}

.ticker-move a:hover {
    text-decoration: underline;
}

@keyframes tickerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* SEARCH BAR */
.search-wrapper {
    text-align: center;
    padding: 15px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

.search-wrapper form {
    max-width: 600px;
    margin: auto;
    display: flex;
}

.search-wrapper input {
    flex: 1;
    padding: 10px;
    border: 2px solid #0b3d91;
    outline: none;
    font-size: 14px;
}

.search-wrapper button {
    padding: 10px 18px;
    background: #0b3d91;
    color: white;
    border: none;
    cursor: pointer;
}

.search-wrapper button:hover {
    background: #082c6c;
}

.expired-badge {
    color: white;
    background: #c60000;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 3px;
}

.today-badge {
    color: white;
    background: #ff9800;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 3px;
}

.view-all {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    text-decoration: none;
    color: #0b3d91;
    font-weight: bold;
}

.view-all:hover {
    color: #c60000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .top-nav a {
        font-size: 13px;
        padding: 8px;
    }
}