.main-hero {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/banners/contact-us-banner-min.png") center / cover no-repeat;
  height: 100vh;
  padding: 32px 0px;
  display: flex;
  align-items: flex-end;
  position: relative;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);
}

.hero-header {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-header>h1 {
  width: 70%;
  font-family: Urbanist, sans-serif;
  font-size: 3.14rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: #ffffff;
}

.hero-header>p {
  width: 50%;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.618;
  text-align: left;
  color: #ffffff;
}

@media screen and (max-width:768px) {
  .main-hero {
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/banners/contact-us-banner-min.png") center / cover no-repeat;
    padding: 0;
    align-items: center;
  }

  .hero-header {
    padding: 40px;
  }

  .hero-header>h1 {
    width: 100%;
  }

  .hero-header>p {
    width: 100%;
  }
}

@media screen and (max-width:430px) {
  .main-hero {
    padding: 0px;
  }

  .hero-header {
    padding: 20px;
  }

  .hero-header>h1 {
    font-size: 2.617rem;
  }
}


/* New contact form layout */

.contact-form-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 64px;
  display: flex;
  gap: 56px;
  align-items: stretch;
}

.contact-form-container-left {
  width: 50%;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-breadcrumb {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-left-title {
  font-family: Urbanist, sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15;
  color: #111111;
}

.contact-left-intro {
  max-width: 520px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.contact-left-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  margin-top: 12px;
}

.contact-left-block h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #151515;
}

.contact-left-block p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4b4b4b;
}

.contact-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
}

.contact-social-links a:hover {
  background-color: #111111;
  color: #ffffff;
}

.contact-form-container-right {
  width: 50%;
  padding: 40px 40px 44px;
  background: #f7f7f9;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececf2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-header h2 {
  font-family: Urbanist, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111111;
}

.contact-form-header p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #5d5d5d;
  max-width: 360px;
}

.contact-form-container-right .main-form {
  margin-top: 8px;
}

.contact-form-container-right .submit-button {
  margin-top: 4px;
}

.contact-form-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background-color: #111111;
  color: #ffffff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-form-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #111111;
}

.contact-form-button-label {
  white-space: nowrap;
}

.contact-form-button:hover {
  background-color: #181818;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.contact-form-button:active {
  transform: translateY(1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1024px) {
  .contact-form-container {
    padding: 64px 32px;
    gap: 40px;
  }

  .contact-left-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
  }

  .contact-form-container-left,
  .contact-form-container-right {
    width: 100%;
  }

  .contact-left-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 56px 16px;
  }

  .contact-left-title {
    font-size: 2.1rem;
  }

  .contact-form-container-right {
    padding: 28px 20px 32px;
  }
}






















.office-locations-container-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 60px;
}

.office-locations-container-main-header {
  margin-bottom: 40px;
}

.office-locations-container-main-header h2 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
}

.office-locations-container-main-header p {
  width: 60%;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 16px;
}

.office-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.office-location-card {
  border: 1px solid #dce2ea;
  border-radius: 24px;
  padding: 34px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 440px;
}

.office-location-card-headquarters {
  background: linear-gradient(49.54deg, #003366 2.13%, #0f52ba 96.81%);
  ;
  border-color: var(--buttons);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.office-location-badge {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.765rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #dce2ea;
  color: #5c6664;
  background: #f8fafc;
}

.office-location-card-headquarters .office-location-badge {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.office-location-card h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.618rem;
  font-weight: 600;
  line-height: 1.2;
}

.office-contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.office-contact-block h4 {
  font-family: Urbanist, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.office-contact-block p,
.office-contact-link {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: #202020;
  text-decoration: none;
}

.office-location-card-headquarters .office-contact-block h4,
.office-location-card-headquarters .office-contact-block p,
.office-location-card-headquarters .office-contact-link {
  color: #ffffff;
}

.office-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.618;
  color: #003366;
  text-decoration: none;
  margin-top: auto;
}

.link-white {
  color: #fff;
}

.office-directions-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .office-locations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .office-location-card {
    min-height: 380px;
  }

  .office-locations-container-main-header p {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .office-locations-container-main {
    padding: 80px 16px;
  }

  .office-locations-container-main-header p {
    width: 100%;
    font-size: 1rem;
  }

  .office-locations-grid {
    grid-template-columns: 1fr;
  }

  .office-location-card {
    padding: 24px;
    min-height: unset;
  }

  .office-location-card h3 {
    font-size: 1.9rem;
  }

  .office-contact-block h4 {
    font-size: 1rem;
  }

  .office-contact-block p,
  .office-contact-link {
    font-size: 0.9rem;
  }
}




.main-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

label {
  font-family: Urbanist, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

input,
select,
textarea {
  padding: 12px 14px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  border: unset;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}

#contactMessage {
  font-family: Urbanist, sans-serif;
  font-size: 1.618rem;
  font-weight: 500;
  line-height: 1.5;
}

#contactDisclaimer>p {
  font-family: Urbanist, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

#recaptcha-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: flex-start;
  border: 2px solid transparent;
  padding: 0px;
}

#errorTooltip {
  color: red;
  font-size: 0.8rem;
  margin-top: 4px;
}

#recaptcha-container.error {
  border-color: red;
  position: relative;
}

#recaptcha-container.error::after {
  content: 'Captcha is required';
  color: red;
  font-family: Urbanist, sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  position: absolute;
  top: -24px;
  left: 0;
}

/* Floating label wrapper */
.floating-group {
  position: relative;
  width: 100%;
}

/* Label inside input initially */
.floating-label {
  position: absolute;
  left: 14px;
  top: 12px;
  color: #777;
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
  transition: 0.2s ease all;
}

/* Float label on focus or when input is not empty */
.field:focus+.floating-label,
.field:not(:placeholder-shown)+.floating-label,
select:focus+.floating-label,
select:valid+.floating-label,
textarea:focus+.floating-label,
textarea:not(:placeholder-shown)+.floating-label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  color: #104b88;
  /* your primary blue */
}

/* Ensure select fields look consistent */
select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%23777' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* Optional: style textareas like inputs */
textarea.field {
  resize: vertical;
}

@media screen and (max-width:1024px) {
  .contact-container-main {
    padding: 64px 32px;
  }
}

@media screen and (max-width:768px) {
  .contact-container-main-header>p {
    width: 100%;
  }

  .contact-container-main-body {
    flex-direction: column;
  }

  .contact-container-main-body-col>img {
    display: none;
    scale: 0;
  }

  .contact-container-main-body-col:last-child {
    padding: 32px;
  }

}

@media screen and (max-width:430px) {
  .contact-container-main {
    padding: 64px 16px;
  }

  .contact-container-main-header>p {
    font-size: 1rem;
  }
}


.contact-us-main {
  padding: 64px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.contact-content-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-header-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-header-main>span {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

.contact-header-main>h2 {
  font-family: Urbanist, sans-serif;
  font-size: 4.235rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-header-main>p {
  width: 90%;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.618rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-header>h3 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
}

.form-group {
  display: flex;
  gap: 16px;
}

.contact-content-info-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-content-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-content-info>h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-content-main,
.contact-form-main {
  width: 50%;
}

.contact-form-main {
  background-color: #f0f2f4;
  padding: 50px;
  border-radius: 26px;
}





@media screen and (max-width:768px) {
  .contact-us-main {
    flex-direction: column;
  }

  .contact-content-main,
  .contact-form-main {
    width: 100%;
  }

  .contact-header-main>h2 {
    width: 70%;
    font-size: 2.617rem;
  }

  .contact-header-main>p {
    width: 70%;
    font-size: 1rem;
  }

}

@media screen and (max-width:430px) {
  .contact-us-main {
    gap: 32px;
  }

  .contact-header-main>h2 {
    width: 100%;
  }

  .contact-header-main>p {
    width: 100%;
  }

  .contact-form-main {
    padding: 32px;
  }

  .form-group {
    flex-direction: column;
  }
}



/* Governance contact section */

.governance-contact-section {
  padding: 96px 64px;
  background: radial-gradient(120% 150% at 0% 0%, #292929 0%, #141414 45%, #000000 100%);
}

.governance-contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 48px;
  color: #ffffff;
}

.governance-contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.governance-contact-header h2 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
}

.governance-contact-header p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e0e0e0;
}

.governance-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.governance-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.governance-card-index {
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-family: Urbanist, sans-serif;
  font-size: 4.235rem;
  opacity: 0.4;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}

.governance-card h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.618rem;
  font-weight: 600;
}

.governance-card-meta {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #cfcfcf;
}

.governance-card-detail {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.governance-card-detail span {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fb6ff;
}

.governance-card-detail a {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.governance-card-detail a:hover {
  text-decoration: underline;
}

.governance-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.governance-aside-block {
  padding: 24px 22px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.governance-aside-block h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.governance-aside-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.governance-aside-block li a {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #8fb6ff;
  text-decoration: none;
}

.governance-aside-block li a:hover {
  text-decoration: underline;
}

.governance-important-info p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e0e0e0;
}

@media screen and (max-width:1024px) {
  .governance-contact-inner {
    padding: 48px 32px;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  }
}

@media screen and (max-width:768px) {
  .governance-contact-section {
    padding: 72px 24px;
  }

  .governance-contact-inner {
    padding: 40px 28px;
    grid-template-columns: minmax(0, 1fr);
  }

  .governance-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width:430px) {
  .governance-contact-section {
    padding: 64px 16px;
  }

  .governance-contact-inner {
    padding: 32px 20px;
    gap: 32px;
  }

  .governance-contact-header h2 {
    font-size: 2rem;
  }
}




.office-location {
  height: 80vh;
  display: flex;
  background-color: #212121;
}

.office-location-image,
.office-location-content {
  flex: 1;
}

.office-location-image {
  background: url('../assets/naman-midtown.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  padding: 50px;
}

.office-location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px;
  gap: 64px;
}

.office-location-content-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.office-location-content-header>h3 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.office-location-content-header>p {
  width: 65%;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.618rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.office-cta>a {
  border: 1px solid #fff;
  border-radius: 80px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-items: flex-start;
  justify-self: flex-start;
  gap: 16px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-weight: 1rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
  color: #000;
  transition: all 0.3s ease-in;
  color: #fff;
}

.office-cta>a:hover {
  background-color: #fff;
  color: #000;
}

.office-cta>a:hover .cta-arrow path {
  fill: #000;
}

@media screen and (max-width:768px) {
  .office-location-content-header>h3 {
    width: 100%;
    font-size: 1.618rem;
  }

  .office-location-content-header>p {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

@media screen and (max-width:430px) {
  .office-location {
    flex-direction: column;
  }
}

.branch-offices {
  max-width: 1440px;
  align-self: center;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.branch-offices-header>h2 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.branch-office-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.branch-office-col {
  width: 50%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-image {
  width: 100%;
}

.branch-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 26px;
}

.branch-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-address>h3 {
  font-family: Urbanist, sans-serif;
  font-size: 1.618rem;
  font-weight: 600;
  line-height: 1.2;
}

.branch-address>p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width:430px) {
  .branch-office-row {
    flex-direction: column;
  }

  .branch-office-col {
    width: 100%;
  }
}












/* CTA Section */

.footer-cta-section {
  display: flex;
  background-color: #212121;
}

.cta-section-left,
.cta-section-right {
  width: 50%;
}

.cta-section-left {
  padding: 128px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}

.cta-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-header>h4 {
  font-family: Urbanist, sans-serif;
  font-size: 2.617rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: #fff;
}

.cta-header>p {
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}

.cta-section-right {
  padding: 50px;
  background-image: url('../assets/corporate-meeting.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
  .footer-cta-section {
    display: flex;
    flex-direction: column;
    background-color: #212121;
  }

  .cta-section-left,
  .cta-section-right {
    width: 100%;
  }

  .cta-section-left {
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 64px;
  }

  .cta-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cta-section-right {
    display: none;
  }
}

@media screen and (max-width:430px) {
  .cta-section-left {
    padding: 64px 40px;
    gap: 32px;
  }

  .cta-header {
    gap: 8px;
  }

  .cta-header>h4 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #fff;
  }

  .cta-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    color: #fff;
  }
}