:root{--bg:#f7f8fa;--card:#fff;--muted:#666;--accent:#0b74de}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Arial,sans-serif;background:var(--bg);margin:0;padding:32px;color:#111}
.container{max-width:1200px;margin:0 auto}
header{margin-bottom:32px}
h1{margin:0;font-size:32px;color:#111}
p{margin:8px 0 0 0;color:var(--muted);font-size:16px}

.featured-gallery-section{background:var(--card);padding:32px;border-radius:8px;margin-bottom:32px;box-shadow:0 1px 2px rgba(0,0,0,0.04)}
.featured-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:32px;align-items:center}
.featured-gallery img{width:100%;height:auto;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,0.15);transition:transform 0.2s}
.featured-gallery img:hover{transform:scale(1.03)}

.intro-section{background:var(--card);padding:24px;border-radius:8px;margin-bottom:32px;box-shadow:0 1px 2px rgba(0,0,0,0.04)}
.intro-section p{margin:0;font-size:16px;line-height:1.6;color:#333}

.gallery-section{margin-bottom:32px}
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:16px}
.gallery img{width:100%;height:auto;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:transform 0.2s;cursor:pointer}
.gallery img:hover{transform:scale(1.02)}

footer{margin-top:48px;padding-top:24px;border-top:1px solid #e6e9ef;text-align:center;color:var(--muted);font-size:14px}
