* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #231f20;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6vw;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #8f2434;
}

.btn-primary {
  background: #8f2434;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #8f2434;
}

.hero {
  padding: 72px 6vw;
  min-height: 56vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(35, 31, 32, 0.5), rgba(35, 31, 32, 0.58)),
    url("assets/surabhi-sjn-convention-hall-entrance.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  max-width: 760px;
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 18px;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.lead {
  font-size: 19px;
  max-width: 720px;
}

.section {
  padding: 52px 6vw;
}

.section.alt {
  background: #faf7f4;
}

.faq-item {
  border-top: 1px solid #e2d9d0;
  padding: 18px 0;
}

.cta-band {
  background: #231f20;
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 780px) {
  .nav {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  h1 {
    font-size: 33px;
  }
}

