/* ================================
   Easy-Sec Module
================================= */
.easy-sec {
  padding-bottom: 72px;
}

/* Flex container: desktop layout */
.easy-sec .easy-sec-mn.d-flex {
  display: flex;
  justify-content: center; /* center both columns inside container */
  align-items: center;     /* vertical center alignment */
  gap: 233px;              /* 100px horizontal space between left and right */
  width: 100%;
}

/* Left column width for desktop */
.easy-sec .easy-sec-lt {
  flex: 0 0 auto;      /* width determined by content */
  max-width: 700px;    /* adjust as needed */
}

/* Right column width for desktop */
.easy-sec .easy-sec-rt.left-vector-img {
  flex: 0 0 auto;
  max-width: 429px;
  display: flex;
  justify-content: flex-end;
  position: relative; /* container for pseudo element */
  z-index: 2;
}

/* Arrow/vector attached to right column */
.easy-sec .left-vector-img::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 100%;       /* attach to left of right column */
  margin-right: 0px; /* spacing from right column */
  width: 210px;
  height: 350px;
  background-image: url("https://21958117.fs1.hubspotusercontent-na1.net/hubfs/21958117/left-vector-img.svg");
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; 
}

/* Left column content width */
.easy-sec .easy-sec-cntr {
  width: 100%;
}

/* Numbers & text styling */
.easy-sec .easy-cntr-txt {
  display: flex;
  gap: 32px;
  align-items: center;
}

.easy-sec .easy-txt p {
  margin: 0;
  font-size: 24px;
}

.easy-sec .easy-numb h3 {
  color: var(--Colours-Black, #222);
  text-align: center;
  font-size: 150px !important;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
}

/* =============================
   CTA Wrappers
============================= */
.easy-sec .en-btn-text-container {
  display: inline-block;
}

.easy-sec .en-btn a {
  background-color: #EF5E17;
  padding: 16px 85px;
  border-radius: 30px;
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.easy-sec .cta_note_text {
  text-align: center;
  margin-top: -21px;
  width: 100%;
}

/* Desktop CTA visibility */
.easy-sec .en-btn-wrapper.desktop-v {
  display: block;
}
.easy-sec .en-btn-wrapper.mobile-v {
  display: none;
}

/* =============================
   Responsive: Mobile
============================= */
@media only screen and (max-width: 1025px) {

  /* Hide desktop CTA, show mobile CTA */
  .easy-sec .en-btn-wrapper.desktop-v {
    display: none;
  }
  .easy-sec .en-btn-wrapper.mobile-v {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Hide right column arrow */
  .easy-sec .left-vector-img::before {
    display: none;
  }

  /* Columns full width */
  .easy-sec .easy-sec-lt,
  .easy-sec .easy-sec-rt {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Stack columns vertically and center content */
  .easy-sec .easy-sec-mn.d-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px; /* vertical gap between stacked columns */
  }

  .easy-sec .easy-sec-lt .easy-sec-cntr,
  .easy-sec .easy-sec-rt .easy-cntr {
    text-align: center;
  }

  /* Mobile CTA below right column */
  .easy-sec .en-btn-mobile-bottom {
    order: 2;
    margin-top: 24px;
  

}

/* Extra small screens */
@media only screen and (max-width: 821px) {
  .easy-sec .easy-sec-cntr {
    width: 100%;
  }
}