@font-face {
  font-family: "CustomFont-Regular";
  src: url("../assets/font/LieraSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CustomFont-Bold";
  src: url("../assets/font/LieraSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CustomFont-Semi-bold";
  src: url("../assets/font/LieraSans-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


.header-partner {
  position: relative;
  text-align: center;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b6def6;
}

.header-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.header-text-partner {
  font-family: "CustomFont-Bold";
  position: absolute;
  color: #0f4568;
  font-size: 2.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  text-align: center;
}

/* Partner With Us Section */
.service-support-partner {
  padding: 40px 20px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
}

.service-support-partner-content h1 {
  font-family: "CustomFont-Semi-bold";
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 50px;
  text-align: center;
}

.service-support-partner-options {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-support-partner-option h2 {
  font-family: "CustomFont-Regular";
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.service-support-partner-option p {
  font-family: "CustomFont-Regular";
  font-size: 1.1rem;
  font-weight: lighter;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-image {
    width: 60%; /* Adjust the image size for medium screens */
  }

  .header-text-partner {
    font-size: 1.8rem; /* Adjust font size */
  }

  .service-support-partner {
    padding: 30px 15px; /* Reduce padding */
  }

  .service-support-partner-content h1 {
    font-size: 1.8rem; /* Slightly smaller font size */
  }

  .service-support-partner-options {
    gap: 40px; /* Adjust spacing between options */
  }
}

@media (max-width: 768px) {
  .header-image {
    width: 80%; /* Further adjust image size */
  }

  .header-text-partner {
    font-size: 1.5rem; /* Reduce font size for smaller screens */
    top: 55%; /* Adjust position for better alignment */
    transform: translate(-50%, -55%);
  }

  .service-support-partner {
    padding: 20px 10px; /* Further reduce padding */
  }

  .service-support-partner-content h1 {
    font-size: 1.6rem; /* Smaller font size */
  }

  .service-support-partner-option h2 {
    font-size: 1.3rem; /* Adjust section header font size */
  }

  .service-support-partner-option p {
    font-size: 1rem; /* Slightly smaller paragraph font */
  }
}

@media (max-width: 480px) {
  .header-image {
    width: 100%; /* Full width for small screens */
  }

  .header-text-partner {
    font-size: 1.2rem; /* Further reduce font size */
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px; /* Add padding for better text alignment */
  }

  .service-support-partner {
    padding: 15px 5px; /* Minimal padding for small screens */
  }

  .service-support-partner-content h1 {
    font-size: 1.4rem; /* Adjust font size */
  }

  .service-support-partner-option h2 {
    font-size: 1.2rem; /* Smaller header size */
  }

  .service-support-partner-option p {
    font-size: 0.9rem; /* Smaller paragraph size */
  }
}
