*{box-sizing:border-box}
body{margin:0;font-family:system-ui;background:#f6f7f9;color:#222}

.header{background:#fff;border-bottom:1px solid #e5e5e5}
.container{max-width:1200px;margin:auto;padding:1rem 1.5rem}
.header-inner{display:flex;align-items:center;justify-content:space-between}

.logo img{height:60px}

.menu{display:flex;gap:1rem;flex-wrap:wrap}
.menu a{text-decoration:none;color:#222;padding:.5rem 1rem;border-radius:20px}
.menu a:hover{background:#eef3f9}
.menu .cta{background:#1f75c9;color:#fff}

/* TICKER */
.ticker{background:linear-gradient(90deg,#1f75c9,#d62828,#f5c400);overflow:hidden}
.ticker-track{display:flex;gap:3rem;padding:.6rem 0;color:#fff;font-weight:600;width:max-content;animation:tickerMove 26s linear infinite}
.ticker:hover .ticker-track{animation-play-state:paused}
@keyframes tickerMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* HERO SLIDER */
.hero-slider{
 width:50%;
 margin:3rem auto 2rem;
 position:relative;
 height:300px;
 overflow:hidden;
 border-radius:16px;
 box-shadow:0 10px 30px rgba(0,0,0,.15)
}
.hero-slider img{
 position:absolute;
 inset:0;
 width:100%;
 height:100%;
 object-fit:cover;
 opacity:0;
 transition:opacity 2s ease-in-out;
}
.hero-slider img.active{opacity:1}

/* CONTENT */
section{max-width:1200px;margin:auto;padding:4rem 1.5rem}
.hero{text-align:center}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem}
.card{background:#fff;padding:2rem;border-radius:14px}

.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem}
.gallery img{width:100%;height:180px;object-fit:cover;border-radius:12px}
figcaption{text-align:center;font-size:.9rem;color:#555;margin-top:.4rem}

iframe{width:100%;height:320px;border:0;border-radius:12px}

footer{text-align:center;padding:2rem;background:#111;color:#fff}

@media(max-width:900px){
 .hero-slider{width:90%}
}
