:root { --blue: #0875b9; --dark: #263746; --light: #f5f7f9; --text: #343a40; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-top: 64px; color: var(--text); background: #fff; font: 15px/1.5 Roboto, Arial, sans-serif; }
a { color: var(--blue); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
.site-header { position: fixed; z-index: 10; inset: 0 0 auto; height: 64px; display: flex; align-items: center; gap: 28px; padding: 0 max(24px, calc((100% - 1140px) / 2)); background: #fff; box-shadow: 0 2px 12px #00000018; }
.brand img { display: block; width: 132px; max-height: 54px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; height: 100%; }
.main-nav a, .nav-dropdown button, .login-link { display: block; padding: 20px 12px; color: #343a40; border: 0; background: transparent; font: inherit; cursor: pointer; }
.main-nav .active, .main-nav a:hover, .nav-dropdown button:hover { color: var(--blue); }
.login-link { margin-left: auto; }
.nav-dropdown { position: relative; height: 100%; }
.nav-dropdown button span { font-size: 18px; }
.dropdown-menu { position: absolute; top: 58px; left: 0; display: none; min-width: 210px; padding: 8px 0; background: #fff; box-shadow: 0 4px 16px #0002; }
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { padding: 8px 16px; }
.dropdown-menu a:hover { background: #f1f3f5; }
.menu-toggle, .mobile-menu { display: none; }
.slideshow { position: relative; width: calc(100% - 48px); max-width: 900px; margin: 24px auto 0; overflow: hidden; border-radius: 8px; background: #222; }
.slides { position: relative; width: 100%; height: 336px; }
.slide { position: absolute; inset: 0; display: none; margin: 0; }
.slide.active { display: block; animation: fade .45s ease; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide figcaption { position: absolute; right: 0; bottom: 14%; left: 0; color: #fff; text-align: center; font-size: 1.25rem; text-shadow: 0 1px 4px #000; }
.slide-prev, .slide-next { position: absolute; top: 45%; border: 0; color: #fff; background: #0005; font-size: 36px; line-height: 1; cursor: pointer; }
.slide-prev { left: 20px; } .slide-next { right: 20px; }
.slide-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slide-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slide-dots .active { background: #fff; }
.feature { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(500px, 2fr); gap: 56px; max-width: 1140px; margin: auto; padding: 42px 24px 56px; }
.intro h1 { margin: 0 0 18px; font-size: 2rem; font-weight: 400; }
.intro img { display: block; width: 100%; max-width: 400px; height: auto; margin-top: 26px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { display: flex; align-items: center; min-height: 124px; padding: 24px; border-radius: 8px; box-shadow: 0 2px 12px #00000018; }
.card > img { width: 64px; height: 64px; object-fit: contain; flex: none; }
.card > div { padding-left: 18px; }
.card h2 { margin: 0 0 4px; font-size: 1.15rem; font-weight: 500; }
.card p { margin: 0; }
.calendar { max-width: 850px; margin: 0 auto 55px; padding: 0 24px; text-align: center; }
.circulars { max-width: 900px; margin: 0 auto 48px; padding: 0 24px; }
.circulars-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 12px; border-bottom: 2px solid var(--blue); }
.circulars h2 { margin: 0; font-size: 1.45rem; font-weight: 400; }
.circulars ul { margin: 0; padding: 0; list-style: none; box-shadow: 0 2px 12px #00000018; }
.circulars li + li { border-top: 1px solid #e4e8eb; }
.circulars li a { display: block; padding: 14px 18px; color: var(--text); }
.circulars li strong, .circulars li span { display: block; }
.circulars li span { margin-top: 5px; color: #68737d; font-size: .92rem; }
.circulars li a:hover, .circulars li a:focus { color: var(--blue); background: var(--light); text-decoration: none; }
.calendar-links { display: flex; justify-content: center; gap: 90px; margin-bottom: 26px; }
.calendar-links a { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text); }
.calendar-links img { width: 86px; height: 86px; object-fit: contain; }
.calendar > a { font-size: 1.05rem; }
footer { color: #fff; background: var(--dark); }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1140px; margin: auto; padding: 48px 24px; }
footer h2 { font-size: 1.1rem; font-weight: 400; } footer a { color: #fff; } footer p { margin: 8px 0 22px; }
.stores { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; } .stores img { width: 140px; height: auto; }
.copyright { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 16px; color: #cbd3da; background: #1c2933; font-size: .85rem; } .copyright img { height: 32px; width: auto; vertical-align: middle; }
@keyframes fade { from { opacity: .35; } to { opacity: 1; } }
@media (max-width: 767px) {
  body { padding-top: 58px; }
  .site-header { height: 58px; padding: 0 16px; gap: 14px; }
  .brand { margin: auto; } .brand img { width: 116px; }
  .main-nav, .login-link { display: none; } .menu-toggle { display: block; border: 0; background: transparent; color: var(--text); font: inherit; cursor: pointer; } .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .mobile-menu { position: fixed; z-index: 9; top: 58px; left: 0; right: 0; display: block; padding: 8px 0; background: #fff; box-shadow: 0 4px 12px #0002; } .mobile-menu[hidden] { display: none; } .mobile-menu a, .mobile-menu summary { display: block; padding: 10px 24px; list-style: none; cursor: pointer; } .mobile-menu details a { padding-left: 44px; background: var(--light); }
  .slideshow { width: 100%; } .slides { height: 216px; } .slide figcaption { display: none; }
  .feature { display: block; padding: 30px 20px; } .intro h1 { font-size: 1.7rem; } .cards { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .circulars { margin-bottom: 36px; padding: 0 20px; } .circulars-heading { align-items: center; } .circulars li a { padding: 12px 14px; }
  .calendar-links { gap: 30px; } .footer-columns { grid-template-columns: 1fr; gap: 18px; padding: 34px 24px; }
}
