@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/gotham/Gotham-Bold.woff2") format("woff2"),
    url("../fonts/gotham/Gotham-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.heu-page {
  font-family: "Roboto", sans-serif;
}

/* ========================= banner-section start ========================= */

.banner-overlay {
  position: absolute;
  inset: 0; /* cover the entire banner */
  background: linear-gradient(
    to top,
    #006633 0%,
    /* solid green at bottom */ rgba(0, 90, 40, 0.2) 15%,
    /* fade upward */ rgba(0, 102, 51, 0) 100% /* transparent at top */
  );
  z-index: 1; /* above image, below text */
}

/* Mobile override */
@media (max-width: 640px) {
  .banner-overlay {
    background-color: rgba(0, 102, 51, 0.5);
  }
}

.heu-page .banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(50px, 1.8vw, 20px);
  font-family: "Gotham", "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

/* ========================= Live Your Passion header ========================= */
.heu-page .live-your-passion-header {
  position: relative;
  display: flex; /* enables flexbox */
  flex-direction: column; /* stacks text and gradient vertically */
  justify-content: center; /* centers vertically */
  align-items: center; /* centers horizontally */
  text-align: center; /* centers multi-line text */
  padding-bottom: 8px;
  width: 100%; /* ensures full width for centering */
}

.heu-page .live-your-passion-header h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-family: "Gotham", "Roboto", sans-serif;
  line-height: 0.8;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.heu-page .live-your-passion-header h2 span {
  color: white;
  text-shadow: 1px 4px 7px rgba(0, 0, 0, 0.9);
}

.heu-page .live-your-passion-header .header-background {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: linear-gradient(
    90deg,
    #c00000,
    #b76029,
    #f6d200,
    #60b258,
    #60b258,
    #003a63,
    #471f65,
    #5a0000,
    #919191,
    #c00000
  );
  background-size: 200%;
  animation: moveGradient 17s linear infinite;
  z-index: 0;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}

@media (max-width: 1000px) {
  .heu-page .live-your-passion-header .header-background {
    width: 65%; /* narrower than desktop */
    left: 50%;
    transform: translateX(-50%);
    height: 32px; /* slightly thinner bar */
  }

  .heu-page .live-your-passion-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1; /* keeps text compact */
  }
}

@media (max-width: 640px) {
  .heu-page .live-your-passion-header .header-background {
    width: 75%; /* slightly wider for small screens */
    left: 50%;
    transform: translateX(-50%);
    height: 28px; /* thinner bar for mobile */
  }

  .heu-page .live-your-passion-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    line-height: 1; /* keeps text compact */
  }
}

.heu-page .banner-main {
  margin: 0 0 6px;
  color: #f6fff2;
  font-size: clamp(2.2rem, 6.2vw, 5.4rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
  font-weight: 900;
  text-shadow:
    0 10px 24px rgba(10, 34, 20, 0.5),
    0 18px 38px rgba(6, 22, 14, 0.36);
}

.heu-page .scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
}

.heu-page .scroll-arrow i {
  font-size: 2.5rem;
  color: #fff;
  animation: heuBounceArrow 1s infinite;
}

@keyframes heuBounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ========================= intro-section start ========================= */
.heu-page .intro-section {
  padding: 70px 40px;
  background: #eef3ef;
}

.heu-page .intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.heu-page .intro-text h1 {
  margin: 0 0 18px;
  color: #16552f;
  font-size: 2.6rem;
  line-height: 1.15;
}

.heu-page .intro-text p {
  margin: 0 0 16px;
  color: #2f3a36;
  font-size: 1rem;
  line-height: 1.75;
}

.heu-page .intro-text p:last-of-type {
  margin-bottom: 0;
}

.heu-page .intro-right-column {
  --right-panel-width: 420px;
}

.heu-page .intro-right-global {
  width: 100%;
  max-width: var(--right-panel-width);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
}

.heu-page .intro-right-global h3 {
  margin: 0 0 10px;
  color: #16552f;
  font-size: 1.08rem;
  line-height: 1.3;
}

.heu-page .intro-right-global p {
  margin: 0;
  color: #2f3a36;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Intro Carousel Styles */
.heu-page .intro-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--right-panel-width);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heu-page .intro-carousel-track {
  position: relative;
  width: var(--right-panel-width);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.heu-page .intro-slide {
  position: absolute;
  width: 380px;
  height: 550px;
  border-radius: 28px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  cursor: grab;
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1;
  user-select: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.heu-page .intro-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 8px at 10% 15%,
      rgba(255, 255, 255, 0.8) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 6px at 90% 10%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 12px at 15% 85%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 10px at 85% 80%,
      rgba(255, 255, 255, 0.65) 0%,
      transparent 100%
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 35%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 65%
    );
  pointer-events: none;
  z-index: 2;
}

.heu-page .intro-slide::after {
  display: none;
}

.heu-page .intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Front card */
.heu-page .intro-slide[data-position="0"] {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
  z-index: 5;
}
/* Cards behind - right side stack */
.heu-page .intro-slide[data-position="1"] {
  transform: translateX(38px) translateY(8px) scale(0.92);
  opacity: 0.8;
  z-index: 4;
}
.heu-page .intro-slide[data-position="2"] {
  transform: translateX(68px) translateY(16px) scale(0.84);
  opacity: 0.65;
  z-index: 3;
}
/* Cards behind - left side stack */
.heu-page .intro-slide[data-position="3"] {
  transform: translateX(-38px) translateY(8px) scale(0.92);
  opacity: 0.8;
  z-index: 4;
}
.heu-page .intro-slide[data-position="4"] {
  transform: translateX(-68px) translateY(16px) scale(0.84);
  opacity: 0.65;
  z-index: 3;
}
.heu-page .intro-slide[data-position="5"] {
  transform: translateX(0) translateY(24px) scale(0.76);
  opacity: 0;
  z-index: 1;
}

.heu-page .intro-slide:nth-child(1) {
  background: #b4d7ff;
}
.heu-page .intro-slide:nth-child(2) {
  background: #e6d7e6;
}
.heu-page .intro-slide:nth-child(3) {
  background: #ffd4b4;
}
.heu-page .intro-slide:nth-child(4) {
  background: #b4e7d6;
}
.heu-page .intro-slide:nth-child(5) {
  background: #fffacd;
}
.heu-page .intro-slide:nth-child(6) {
  background: #d8f0e4;
}
.heu-page .intro-slide:nth-child(7) {
  background: #f3d4f0;
}

/* Apply Now card — scaled-down carousel */
.heu-page .apply-carousel-wrap .intro-carousel-wrapper {
  height: 400px;
}

.heu-page .apply-carousel-wrap .intro-carousel-track {
  transform: scale(0.58);
  margin-top: -122px;
  margin-bottom: -122px;
}

/* Accordion Styles — Bootstrap 5 overrides */
.heu-page .intro-accordion-wrapper {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.heu-page .intro-accordion-wrapper h2 {
  margin: 0 0 24px;
  color: #16552f;
  font-size: 1.95rem;
  line-height: 1.2;
}

.heu-page .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heu-page .accordion-item {
  border: none;
  border-radius: 8px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.heu-page .accordion-item:hover {
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.heu-page .accordion-button {
  padding: 18px 24px;
  background: #fff;
  color: #16552f;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.heu-page .accordion-button:hover {
  background: #f9fbf8;
}

.heu-page .accordion-button:not(.collapsed) {
  color: #16552f;
  background: #f9fbf8;
  box-shadow: none;
}

.heu-page .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(47, 124, 72, 0.2);
  border-color: transparent;
}

.heu-page .accordion-button::after {
  filter: invert(27%) sepia(39%) saturate(715%) hue-rotate(101deg)
    brightness(84%) contrast(94%);
}

.heu-page .accordion-body {
  padding: 15px 20px 15px;
}

.heu-page .accordion-body p {
  margin: 0;
  color: #2f3a36;
  font-size: 1rem;
  line-height: 1.65;
}

/* ========================= cards-section start ========================= */
.heu-page .cards-section {
  padding: 50px 30px 90px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heu-page .graduate-section {
  background: #eef3ef;
}

.heu-page .cards-title {
  margin: 0 0 16px;
  color: #16552f;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}

.heu-page .l-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1080px;
  padding: 24px;
  margin: 0 auto;
}

.heu-page .b-college-card {
  position: relative;
  z-index: 1;
  flex: 0 0 240px;
  width: 240px;
  aspect-ratio: 2 / 3;
  perspective: 1000px;
}

.heu-page .b-college-card__link {
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: 16px;
}

.heu-page .b-college-card__link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -4px;
}

.heu-page .b-college-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 6px 12px 12px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  transform-origin: top center;
  transform: skewX(0.001deg);
  transition:
    transform 0.35s ease-in-out,
    opacity 0.5s ease-in-out;
  will-change: opacity;
}

.heu-page .b-college-card:hover::before {
  opacity: 0.6;
  transform: rotateX(7deg) translateY(-6px) scale(1.05);
}

.heu-page .b-college-card__cover {
  z-index: 1;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  background-color: #2f7d32;
  background-size: cover;
  background-position: center;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  transform-origin: top center;
  transform: skewX(0.001deg);
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}

.heu-page .card-arts-sciences .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CAS.webp");
  background-color: #a9d9ab;
}

.heu-page .card-business-accountancy .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CBA.webp");
  background-color: #f4dca0;
}

.heu-page .card-computing-studies .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CCS.webp");
  background-color: #c9ced8;
}

.heu-page .card-education .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CED.webp");
  background-color: #a9ccf3;
}

.heu-page .card-engineering .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/COE.webp");
  background-color: #f7c8a3;
}

.heu-page .card-nursing .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CON.webp");
  background-color: #f1b3b3;
}

.heu-page .card-tourism-hospitality .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/CTH.webp");
  background-color: #d7b3c4;
}

.heu-page .card-law .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/LAW.webp");
  background-color: #d9c4f2;
}

.heu-page .card-medicine .b-college-card__cover {
  background-image: url("https://www.usls.edu.ph/assets/colleges/cards/MED.webp");
  background-color: #c7eacb;
}

.heu-page .b-college-card__cover::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.32) 42%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.heu-page .b-college-card__title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  z-index: 4;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.85),
    0 6px 14px rgba(0, 0, 0, 0.6);
}

.heu-page .b-college-card__cover::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(
    226deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.4) 35%,
    rgba(255, 255, 255, 0.2) 42%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: translateY(-20%);
  transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
  will-change: transform;
}

.heu-page .b-college-card:hover .b-college-card__cover {
  transform: rotateX(7deg) translateY(-6px);
}

.heu-page .b-college-card:hover .b-college-card__cover::after {
  transform: translateY(0%);
}

/* ========================= inquiry-section start ========================= */
.heu-page .inquiry-section {
  padding: 32px 40px 0;
  background: #ffffff;
}

.heu-page .inquiry-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.heu-page .inquiry-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.heu-page .inquiry-info h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: #16552f;
}

.heu-page .inquiry-subtext {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #2f3a36;
}

.heu-page .inquiry-info-image {
  width: 100%;
  max-width: 520px;
  height: clamp(340px, 30vw, 430px);
  margin-left: -50px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 12px;
  display: block;
}

.heu-page .inquiry-form {
  background: #ffffff;
  border: 1px solid #d8e4db;
  border-radius: 14px;
  padding: 14px;
  margin-top: 24px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 5px;
  box-shadow: 0 10px 26px rgba(16, 57, 33, 0.1);
}

.heu-page .inquiry-form label {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f3c2c;
}

.heu-page .inquiry-form input,
.heu-page .inquiry-form select,
.heu-page .inquiry-form textarea {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c6d3ca;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 0.88rem;
  color: #1e3629;
  background: #fbfdfb;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.heu-page .inquiry-form select {
  cursor: pointer;
}

.heu-page .inquiry-form textarea {
  min-height: 72px;
  resize: vertical;
}

.heu-page .inquiry-form input:focus,
.heu-page .inquiry-form select:focus,
.heu-page .inquiry-form textarea:focus {
  outline: none;
  border-color: #2f7c48;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 124, 72, 0.14);
}

.heu-page .inquiry-submit-btn {
  grid-column: 1 / -1;
  margin-top: 4px;
  border: none;
  border-radius: 9px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0b7135 0%, #08692f 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.heu-page .inquiry-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(7, 81, 37, 0.24);
  filter: brightness(1.02);
}

/* ========================= Responsive ========================= */
@media (max-width: 900px) {
  .heu-page .intro-section {
    padding: 70px 20px;
  }

  .heu-page .intro-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .heu-page .intro-text h1 {
    font-size: 2.1rem;
  }

  .heu-page .intro-right-column {
    --right-panel-width: 340px;
  }

  .heu-page .intro-carousel-wrapper {
    height: 460px;
  }

  .heu-page .intro-carousel-track {
    width: var(--right-panel-width);
    height: 440px;
  }

  .heu-page .intro-slide {
    width: 380px;
    height: 550px;
  }
  .heu-page .intro-slide[data-position="1"] {
    transform: translateX(41px) translateY(7px) scale(0.92);
  }
  .heu-page .intro-slide[data-position="2"] {
    transform: translateX(74px) translateY(13px) scale(0.84);
  }
  .heu-page .intro-slide[data-position="3"] {
    transform: translateX(-41px) translateY(7px) scale(0.92);
  }
  .heu-page .intro-slide[data-position="4"] {
    transform: translateX(-74px) translateY(13px) scale(0.84);
  }

  .heu-page .intro-accordion-wrapper {
    max-width: 100%;
    margin-top: 40px;
  }
  .heu-page .intro-right-global {
    max-width: var(--right-panel-width);
  }
  .heu-page .intro-accordion-wrapper h2 {
    font-size: 1.6rem;
  }

  .heu-page .banner-section {
    height: 36vh;
    min-height: 260px;
  }

  .heu-page .cards-section,
  .heu-page .inquiry-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heu-page .inquiry-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .heu-page .inquiry-info h2 {
    font-size: 1.6rem;
  }
  .heu-page .inquiry-form {
    padding: 12px 10px;
    margin-bottom: 0;
  }

  .heu-page .inquiry-info-image {
    max-height: 260px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    object-fit: contain;
    object-position: center;
  }
}

@media screen and (max-width: 760px) {
  .heu-page .l-container {
    max-width: 100%;
    gap: 16px;
    padding: 16px;
  }

  .heu-page .b-college-card {
    flex: 0 1 calc((100% - 16px) / 2);
    width: auto;
  }

  .heu-page .cards-title {
    font-size: 1.6rem;
  }

  .heu-page .b-college-card__title {
    font-size: 0.84rem;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 640px) {
  .heu-page .intro-right-column {
    --right-panel-width: 260px;
  }
  .heu-page .intro-text h1 {
    font-size: 1.7rem;
  }

  .heu-page .intro-carousel-wrapper {
    height: 380px;
  }

  .heu-page .intro-carousel-track {
    width: var(--right-panel-width);
    height: 360px;
  }

  .heu-page .intro-slide {
    width: 380px;
    height: 550px;
    border-radius: 20px;
  }
  .heu-page .intro-slide[data-position="1"] {
    transform: translateX(33px) translateY(5px) scale(0.92);
  }
  .heu-page .intro-slide[data-position="2"] {
    transform: translateX(60px) translateY(11px) scale(0.84);
  }
  .heu-page .intro-slide[data-position="3"] {
    transform: translateX(-33px) translateY(5px) scale(0.92);
  }
  .heu-page .intro-slide[data-position="4"] {
    transform: translateX(-60px) translateY(11px) scale(0.84);
  }

  .heu-page .intro-right-global {
    padding: 14px 16px;
  }
  .heu-page .intro-accordion-wrapper h2 {
    font-size: 1.38rem;
  }

  .heu-page .banner-section {
    height: 34vh;
    min-height: 220px;
  }

  .heu-page .inquiry-info h2 {
    font-size: 1.35rem;
  }

  .heu-page .inquiry-info-image {
    max-height: 190px;
    margin-left: 0;
  }

  .heu-page .inquiry-form {
    padding: 10px 8px;
    row-gap: 6px;
  }
  .heu-page .inquiry-form label {
    font-size: 0.8rem;
  }

  .heu-page .inquiry-form input,
  .heu-page .inquiry-form select,
  .heu-page .inquiry-form textarea {
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .heu-page .inquiry-form textarea {
    min-height: 64px;
  }
  .heu-page .inquiry-submit-btn {
    font-size: 0.84rem;
    padding: 9px 14px;
  }
}
