.two-column-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;

  margin: auto;
}

.text-content {
  flex: 1 1 500px;
  //padding-right: 40px;
  text-align: start;
}

.text-content h5 {
  color: #66AB5C;
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  margin: 0;
}

.text-content h2 {
  margin: 0;
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
}

.feature li {
  margin-bottom: 10px;
}

.text-content p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #595959;
  margin-bottom: 25px;
  margin-top: 25px;
}

/* List Layout (Default) */
.feature {
  display: block;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature img {
  width: 24px;
  margin-right: 22px;
  margin-top: 4px;
}

.feature-text h4 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  margin: 0;
  color: #1C2E69;
}

.feature-text p {
  color: #8A8A8A;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  margin: 0;
}

.image-content {
  flex: 1 1 500px;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

/* Cards Layout */
.two-column-section--cards .text-content {
  flex: 1 1 500px;
 // padding-right: 40px;
}

.cards-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.cards-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Right column has top margin to create staggered effect */
.cards-column--right {
  margin-top: 20px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #C9C9C9;
  border-radius: 16px;
  padding: 12px;
  max-width: 360px;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.feature-card img {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  display: block;
  margin:0;
  margin-bottom:8px
}

.feature-card .feature-text h4 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1C2E69;
  margin: 0 0 8px 0;
}

.feature-card .feature-text p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #595959;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    max-width: 350px;
  }
  
  .image-content {
    flex: 1;
  }
  
  .two-column-section {
    flex-direction: column;
    text-align: center;
  }
  
  .text-content {
    padding-right: 0;
  }
  
  .feature {
    justify-content: center;
  }
  
  .feature-text {
    text-align: left;
  }
  
  /* Cards responsive */
  .cards-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    max-width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .cards-grid {
    gap: 20px;
  }
  
  .feature-card {
    max-width: 100%;
  }
}

/* Default: Desktop */
.pc {
  display: block;
}
.mob {
  display: none;
}

/* Mobile */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .mob {
    display: block !important;
  }
}
.image-content {
 padding-top:20px;
  padding-bottom:20px
}

@media screen and (min-width:1000px) {
  
 .image-content {
   
    margin-bottom: -100px;
  }
}