p:empty {
    display: none;
}

.testimonial img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
}

.white__text {
    color: var(--white);
}
.blue__text {
  color: var(--blue-blackmax) !important;
}
.black__text {
    color: var(--black);
}

.fourColumn__description {
  font-size: 18px;
  margin-top: 5px;
  /*padding: 0 30px;*/
  padding 0;
  max-width: 1096px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* Optional: Centers the text within the block */
}

.fourColumn {
  /*padding: 80px 80px;*/
  padding-top: 80px;
  padding-bottom: 55px;
  padding-left: 80px;
  padding-right: 80px;
  background-repeat: no-repeat;
  background-size: cover;
}
.fourColumn__title{
  text-align: center;
  margin: 0 auto 20px;
  max-width: 1050px;
}
.fourColumn__flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.fourColumn__item {
  text-align: center;
  /*flex: 1 1 28%;*/ 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fourColumn__image {
  min-height: 150px;
  display: flex;            /* Add this line */
  align-items: center;      /* Add this line to vertically align the image */
  justify-content: center;  /* Add this line to horizontally align the image */
}
.fourColumn__heading {
  color:#828587;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 900;
}

.fourColumn__body {
  line-height: 1.5;
  /*margin: 20px 0;*/
  margin: 20px 0 0 0;
  max-width: 230px;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.fourColumn__body p {
  line-height: 1.5;
  margin: 20px 0;
}

.fourColumn__body sup {
  font-size: 0.8em;
}

@media (max-width: 1370px){
  .fourColumn__flex {
    /*flex-direction: column;*/
    gap: 40px !important;
  }
}

@media (max-width: 768px){
  .fourColumn{
    padding: 80px 30px;
  }
}

@media (max-width: 425px) {
  .fourColumn__title{
    font-size: 2.2rem;
  }
}
/* Base styles for the link container */
.fourColumn__links {
    max-width: 800px;                    /* Set maximum width */
    margin: 0 auto;                      /* Center the area horizontally */
    display: flex;                       /* Use Flexbox for even spacing */
    justify-content: space-around;       /* Space links evenly */
    flex-wrap: wrap;                     /* Allow wrapping of items */
    padding-top: 50px;
    padding-bottom: 25px;
}

/* Base styles for the links */
.fourColumn__links a {
    font-weight: 900;                   /* Make links bold */
    position: relative;                  /* Position for offset underline */
    text-decoration: none;               /* Remove default underline */
    margin: 0 15px;                      /* Add horizontal margin for desktop view */
    color: inherit;                      /* Inherit the base color from the theme */
}

/* Ensure visited links inherit the same color as non-visited */
.fourColumn__links a:visited {
    color: inherit;
}

/* Underline effect */
.fourColumn__links a::after {
    content: '';                         /* Create the underline effect */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;                        /* Offset the underline by 3px */
    height: 2px;                         /* Set the thickness of the underline */
    background-color: currentColor;      /* Use the current text color for the underline */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition on hover */
}

/* Theme: Blue */
.fourColumn__links_blue a {
    color: var(--blue-blackmax);         /* Set text color for the blue theme */
}

.fourColumn__links_blue a:hover {
    color: #4C9E00;                     /* Set hover text color for the blue theme */
}

.fourColumn__links_blue a:hover::after {
    background-color: #4C9E00;          /* Set hover underline color for the blue theme */
}

/* Theme: White */
.fourColumn__links_white a {
    color: var(--white);                 /* Set text color for the white theme */
}

.fourColumn__links_white a:hover {
    color: lightgray;                    /* Set hover text color for the white theme */
}

.fourColumn__links_white a:hover::after {
    background-color: lightgray;         /* Set hover underline color for the white theme */
}

/* Responsive adjustments */
@media (max-width: 930px) {
    .fourColumn__links {
        flex-direction: column;           /* Stack links vertically on mobile */
        align-items: center;              /* Center links horizontally */
    }

    .fourColumn__links a {
        margin: 15px 0;                   /* 30px total between items (15px top and bottom) */
    }

}

@media (max-width: 1030px) {
/*
  .fourColumn__flex_resize {
    flex-direction:row;
    justify-content: flex-start; 
    gap : 5px !important;
  }

  .fourColumn__flex_resize .fourColumn__item {
  }
*/
  
.fourColumn__flex_resize {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 10px !important;
}

.fourColumn__flex_resize .fourColumn__item {
    flex: 1 1 33.3333%;
    box-sizing: border-box;
    max-width: calc(33.3333% - 10px);
    justify-content: center;
    flex-direction: unset;
}
  
.fourColumn__flex_resize .fourColumn__image {
  min-height: unset;
}
  
}

/* ----- Accordion layout (works with your existing .btn + Font Awesome) ----- */
.lp-accordion {
  max-width: 711px;
  margin: 0 auto;
}

/* Trigger */
.lp-accordion__trigger {
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: none;
  border: 0;
  padding: 18px 0;
  font: inherit;
  letter-spacing: 0.2px;
  text-align: left;
  cursor: pointer;
  border-bottom: 2px solid #c0c2c3;
  color: #2C397C;
}


.lp-accordion__trigger .fa-solid {
  transition: transform .25s ease;
}

/* Panel: we animate height for smooth open/close */
.lp-accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height .28s ease;
  text-align: left;
}

/* When open */
.lp-accordion__item[data-open="true"] .lp-accordion__trigger .fa-solid {
  transform: rotate(90deg);
}

/* Inner content spacing */
.lp-accordion__inner {
  padding: 18px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lp-accordion__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* White rounded rectangle container */
.lp-accordion-wrapper {
  background: #fff;
  border-radius: 12px;      /* adjust to match screenshot (maybe 16px) */
  max-width: 711px;         /* limit width like in screenshot */
  margin: 0 auto;           /* center horizontally */
  padding: 24px 28px;       /* internal spacing */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* subtle shadow if desired */
}

/* Ensure accordion itself stretches full width inside */
.lp-accordion {
  width: 100%;
}

.lp-accordion__heading {
  font-size: 18px;
  font-weight: 900;
}


/* Larger screens: media + content side-by-side (optional) */
@media (min-width: 768px) {
  .lp-accordion__inner {
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: center;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;                     /* spacing between text & arrow */
  background-color: #25327c;    /* dark blue base */
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 100px;         /* pill shape */
  transition: background-color 0.25s ease;
  width: max-content;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #4c9e00;    /* green hover/focus */
  color: #fff;
}

.cta-btn i {
  font-size: 0.8em;
}

/* ---- Panel layout (desktop side-by-side, mobile stacked) ---- */
.roi-layout {
  display: grid;                 /* lp-accordion__inner already uses grid; this is explicit */
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  padding: 8px 0 20px;          /* breathing room inside open panel */
}

@media (max-width: 767px) {
  .roi-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---- Media card (left) ---- */
.roi-media {
  margin: 0;
  max-width: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  background: #f3f4f6;
}
.roi-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Body (right) ---- */
.roi-body { display: grid; gap: 14px; }

.roi-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
}

.roi-copy {
  margin: 0;
  line-height: 1.6;
  max-width: 38ch;              /* keep lines readable like the screenshot */
  color: #1b1b2a;               /* tweak to match your brand color if needed */
}
