* {
  box-sizing: border-box;
}

.hero-partner {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-partner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.35rem;
  font-weight: 400;
  max-width: 700px;
}
@media (max-width: 700px) {
  .hero-partner {
    height: 220px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
/* Add to partnersStyle.css or your main styles.css */
.partner-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 5%;
  font-family: "Inter", sans-serif;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.partner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-text {
  flex: 1;
  min-width: 320px;
}

.partner-label {
  color: #b60000;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.partner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e1e26;
  margin-bottom: 18px;
  line-height: 1.2;
}

.partner-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-benefits li {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.partner-benefits .check {
  color: #b60000;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

.partner-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.benefit-enquiry-section {
  width: 100%;
  padding: 80px 5%;
  font-family: "Inter", sans-serif;
  background-color: white;
}

.benefit-enquiry-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.benefits,
.enquiry {
  flex: 1;
  min-width: 320px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content.show {
  display: block;
}

/* ---------- Benefits Section ---------- */
.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e26;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefits-list li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.benefits-list .icon {
  color: #b60000;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 2px;
}

.benefits-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* ---------- Enquiry Section ---------- */
.enquiry-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e26;
  margin-bottom: 10px;
}

.enquiry-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-input {
  padding: 12px 16px;
  border: none;
  background-color: #f5f3f3;
  font-size: 0.95rem;
  color: #333;
  flex: 1;
}

.full {
  width: 100%;
}

.message-box {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #b60000;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  width: fit-content;
}
