.hero {
  width: min(1260px, calc(100% - 28px));
  min-height: 0;
  margin: 0 auto;
  display: block;
  padding: 34px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-red,
.button-blue,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button-red {
  background: var(--red);
}

.button-blue {
  background: var(--blue);
}

.button-red,
.button-blue {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button-red:hover,
.button-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 63, 115, 0.18);
  filter: brightness(1.07);
}

.button-ghost {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.banner-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.92 / 1;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.banner-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: bannerFade 36s infinite;
}

.banner-slider img:nth-child(2) {
  animation-delay: 6s;
}

.banner-slider img:nth-child(3) {
  animation-delay: 12s;
}

.banner-slider img:nth-child(4) {
  animation-delay: 18s;
}

.banner-slider img:nth-child(5) {
  animation-delay: 24s;
}

.banner-slider img:nth-child(6) {
  animation-delay: 30s;
}

@keyframes bannerFade {
  0%,
  14% {
    opacity: 1;
  }

  18%,
  100% {
    opacity: 0;
  }
}

.quick-actions {
  width: min(980px, calc(100% - 36px));
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-actions a {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: var(--blue);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.quick-actions a:nth-child(2) {
  background: var(--red);
}

.quick-actions a:last-child {
  border-right: 0;
}

.section {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-title {
  margin: 0 0 42px;
  color: var(--blue-2);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.loans {
  width: 100%;
  max-width: none;
  margin-top: 10px;
  padding-inline: max(18px, calc((100% - 1080px) / 2));
  background: var(--paper);
}

.home-loan-selector {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.home-loan-selector > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-loan-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-loan-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#loan-comercial:checked ~ .home-loan-image .loan-image-comercial,
#loan-vivienda:checked ~ .home-loan-image .loan-image-vivienda,
#loan-consumo:checked ~ .home-loan-image .loan-image-consumo {
  opacity: 1;
}

.home-loan-tabs {
  display: grid;
  gap: 14px;
}

.home-loan-card {
  display: grid;
  align-content: center;
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid transparent;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
  cursor: pointer;
}

.home-loan-card span {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-loan-card strong {
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 24px;
  line-height: 1.1;
}

.home-loan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

#loan-comercial:checked ~ .home-loan-tabs label[for="loan-comercial"],
#loan-vivienda:checked ~ .home-loan-tabs label[for="loan-vivienda"],
#loan-consumo:checked ~ .home-loan-tabs label[for="loan-consumo"] {
  border-left-color: var(--red);
  background: #fff7f8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.service-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 26px;
  padding: 0;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.feature-card div {
  padding: 28px 28px 28px 0;
}

.loan-button {
  margin-top: 28px;
}

.approval-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.approval-grid img {
  width: 100%;
  border-radius: 6px;
  filter: drop-shadow(0 14px 18px rgba(18, 63, 115, 0.12));
}

.approval-grid h2 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
}

.approval-grid p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.quote-panel {
  margin-top: 72px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  text-align: center;
}

.quote-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.quote-panel p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.extras-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.extras ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  list-style: none;
}

.extras li {
  position: relative;
  padding-left: 24px;
}

.extras li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.extras img {
  width: min(560px, 100%);
  margin-left: auto;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branch-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.branch-card img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.branch-card h3 {
  margin: 20px 22px 10px;
  color: var(--blue-2);
  font-size: 18px;
}

.branch-card p {
  margin: 0 22px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 28px;
  padding: 96px max(18px, calc((100% - 980px) / 2));
  background: var(--paper);
}

.contact-info h2 {
  max-width: 420px;
  margin: 0 0 34px;
  color: var(--blue-2);
  font-size: clamp(26px, 3.3vw, 42px);
  line-height: 1.08;
}

.contact-info p:not(.eyebrow) {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 800;
}

.contact-info span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.contact-info address {
  margin: 28px 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
  font-weight: 700;
}

.contact-info a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 9px 0 22px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  outline: 0;
  resize: vertical;
}

.contact-form button {
  min-width: 142px;
  min-height: 46px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-page {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 100px;
}

.privacy-page h1 {
  margin: 0 0 30px;
  color: var(--blue-2);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.privacy-content {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-content h2 {
  margin: 32px 0 12px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.2;
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.privacy-content a {
  color: var(--red);
  font-weight: 900;
}

.about-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding: 86px 0 70px;
}

.about-copy h1 {
  margin: 0 0 24px;
  color: var(--blue-2);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.about-main-image {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 96px;
}

.about-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.about-section-head h2 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.about-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.image-slot,
.about-card-image {
  min-height: 190px;
  margin-bottom: 22px;
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.image-slot {
  border: 1px dashed #9db1ca;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3f7fb, #e7eff7);
}

.about-card-image {
  border-radius: 8px;
}

.about-card h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-card h3:not(:first-of-type) {
  margin-top: 28px;
}

.about-card p,
.about-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
  font-weight: 700;
}

.about-card p {
  margin: 0 0 16px;
}

.about-card ul,
.about-card ol {
  margin: 0;
  padding-left: 22px;
}

.about-card li + li {
  margin-top: 10px;
}

.member-hero,
.requirements-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.member-hero {
  padding: 86px 0 58px;
}

.member-hero h1,
.requirements-head h2 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}

.member-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 38px;
}

.member-card,
.requirement-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.member-card {
  padding: 28px;
}

.member-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.1;
}

.member-card p {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
}

.member-card ul,
.requirement-card ul {
  margin: 0;
  padding-left: 22px;
}

.member-card li,
.requirement-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.member-card li + li,
.requirement-card li + li {
  margin-top: 10px;
}

.requirements-section {
  padding: 20px 0 96px;
}

.requirements-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.requirements-grid {
  display: grid;
  gap: 24px;
}

.requirement-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
}

.requirement-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.requirement-card div {
  padding: 34px;
}

.requirement-card h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.1;
}

.loans-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.loans-page-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.loans-page-head h1 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.loans-page-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.loan-category-section {
  padding-top: 42px;
}

.loan-category-title {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1;
}

.loan-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.loan-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.loan-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 63, 115, 0.12);
}

.loan-product-card h3 a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.loan-product-card img,
.loan-product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.loan-product-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #edf4fb, #f8fafc);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.loan-product-card div {
  padding: 20px;
}

.loan-product-card h3 {
  margin: 0 0 10px;
  color: var(--blue-2);
  font-size: 20px;
  line-height: 1.15;
}

.loan-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.credit-detail {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.credit-detail-title {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.credit-detail-title h1 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.credit-detail-title p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
}

.credit-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 30px;
}

.credit-detail-hero img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.credit-detail-hero .loan-product-placeholder {
  height: auto;
  aspect-ratio: 1.08 / 1;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.savings-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.savings-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.savings-head h1 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.savings-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.savings-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.saving-card,
.term-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.saving-card h2,
.term-card h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.1;
}

.saving-card dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.saving-card div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  align-items: start;
}

.saving-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.saving-card dd {
  margin: 0;
  color: var(--blue-2);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.term-section {
  padding-top: 56px;
}

.term-section h2 {
  margin: 0 0 24px;
  color: var(--blue-2);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.term-grid {
  display: grid;
  gap: 20px;
}

.term-card {
  overflow-x: auto;
}

.term-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.term-table th,
.term-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: left;
  font-weight: 700;
}

.term-table th {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.term-table tr:last-child td {
  border-bottom: 0;
}

.credit-summary-card {
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafc;
}

.credit-summary-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.1;
}

.credit-summary-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.credit-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.credit-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 63, 115, 0.06);
}

.credit-info-card h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.1;
}

.credit-info-card p,
.credit-info-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 700;
}

.credit-info-card p {
  margin: 0 0 12px;
}

.credit-info-card ul {
  margin: 0;
  padding-left: 20px;
}

.credit-info-card li + li {
  margin-top: 9px;
}

.credit-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 940px) {
  .hero,
  .approval-grid,
  .extras-grid,
  .contact-section,
  .about-hero,
  .about-content-grid,
  .home-loan-selector,
  .member-grid,
  .requirement-card,
  .loan-products-grid,
  .credit-detail-hero,
  .credit-info-grid,
  .savings-grid-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
    padding-top: 28px;
  }

  .quick-actions,
  .service-grid,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .home-loan-image {
    min-height: 320px;
  }

  .feature-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card div {
    padding: 0 26px 26px;
  }

  .contact-section {
    gap: 42px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-hero {
    gap: 30px;
    padding-top: 58px;
  }

  .about-main-image img {
    height: 320px;
  }

  .member-hero {
    padding-top: 58px;
  }

  .requirement-card img {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .banner-slider {
    aspect-ratio: 1.45 / 1;
  }

  .quote-panel,
  .contact-form,
  .privacy-content {
    padding: 28px 22px;
  }
}
