* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Common Footer (As requested) */
.footer {
  background-color: #0A3319;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 2fr 1.8fr 1.4fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand-col .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-square {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 4px;
}

.footer-brand-col h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.footer-desc {
  color: #e0e0e0;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-socials a:hover {
  background: #C8102E;
}

.footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.footer-links-2col {
  display: flex;
  gap: 20px;
}

.footer-links-col ul,
.footer-links-2col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul li a {
  color: #e0e0e0;
  font-size: 13px;
  transition: all 0.2s ease;
  padding: 4px 8px;
  margin-left: -8px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.footer ul li a:hover {
  background-color: #C8102E;
  color: #fff;
}

.footer-newsletter-col p {
  color: #e0e0e0;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-form input {
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.footer-form button {
  background: #C8102E;
  color: #fff;
  padding: 12px 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.footer-form button:hover {
  background: #a80b25;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-info p {
  margin: 0;
  color: #e0e0e0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copy {
  color: #a0a0a0;
  font-size: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #a0a0a0;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-links-2col {
    gap: 40px;
  }
}
