body {
 background:#f8fafc;
 color:#0b1221;
 font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
 header.hero {height:60vh; display:flex; align-items:center; justify-content:center; color:#fff; text-shadow:2px 2px 10px #000; }
 header.hero h1 { font-size:3rem; font-weight:700; }
 section { padding:60px 0; }
 h2 { font-size:2rem; font-weight:600; margin-bottom:20px; color:#2c3e50; }
 .info-card { background:#fff; border-radius:15px; box-shadow:0 4px 15px rgba(0,0,0,0.1); padding:30px; margin-bottom:30px; }
 .gallery img { border-radius:12px; transition:transform 0.3s; }
 .gallery img:hover { transform:scale(1.05); }
 .gallery img{border-radius:12px;transition:transform .4s;}
 .gallery img {
 width: 100%;
 height: 220px; /* fixed equal thumbnail height */
 object-fit: cover; /* crop neatly without distortion */
 border-radius: 12px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.15);
 transition: transform 0.3s ease;
}

.gallery img:hover {
 transform: scale(1.05); /* smooth zoom effect */
}
 .gallery img:hover{transform:scale(1.05);}
 .faq-button {width:100%;text-align:left;}
 footer { background:#2c3e50; color:#fff; padding:40px 20px; text-align:center; }