
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Hind Siliguri', sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }
.container { width: 85%; max-width: 1200px; margin: auto; }

header { background: #fff; padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; color: #1a73e8; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: #555; font-weight: 600; }
.btn-login { background: #1a73e8; color: #fff !important; padding: 8px 20px; border-radius: 5px; }

.hero { background: #1a73e8; color: #fff; padding: 100px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.search-box { margin-top: 30px; display: flex; justify-content: center; }
.search-box input { padding: 15px; width: 400px; border: none; border-radius: 5px 0 0 5px; outline: none; }
.search-box button { padding: 15px 30px; border: none; background: #ff9800; color: #fff; font-weight: bold; border-radius: 0 5px 5px 0; cursor: pointer; }

.pricing { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 40px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card.featured { border: 2px solid #1a73e8; position: relative; }
.price { font-size: 2.5rem; font-weight: bold; color: #1a73e8; margin: 20px 0; }
.price span { font-size: 1rem; color: #777; }
.card ul { list-style: none; margin-bottom: 30px; }
.card ul li { padding: 10px 0; border-bottom: 1px solid #eee; }
.btn { display: inline-block; padding: 12px 25px; background: #1a73e8; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; }

footer { background: #222; color: #fff; padding: 40px 0; text-align: center; margin-top: 50px; }
