/* 
    GLOBAL STYLE FOR Template
     
    1. Whitelabel (Whitelabel.php)
    2. Event Management (EventManagement.php)
    3. Api Services (ApiServices.php)


*/

/* ========= WHITELABEL ============ */

.whitelabel-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  width: 100%;
  position: relative;
  margin-top: 70px;
  color: #fff;
}

.banner-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}

.banner-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 90%;
}

.section-benefit {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 60px;
}

.section-title {
  font-weight: 700;
  font-size: 32px;
  color: #4a77ae;
}

.section-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #333;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #4a77ae;
}

.benefit-icon-wrapper {
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-icon {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.benefit-title {
  font-weight: 700;
  font-size: 18px;
  color: #1b2d44;
  margin-bottom: 10px;
}

.benefit-desc {
  font-weight: 400;
  font-size: 14px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-card {
  background-color: #3b6c9f;
  border-radius: 20px;
  padding: 60px 40px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(59, 108, 159, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.cta-label {
  font-weight: 500;
  font-size: 16px;
  opacity: 0.9;
}

.cta-heading {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #3b6c9f;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-cta-wa:hover {
  background-color: #f8f9fa;
  color: #2c527a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* RESPONSIVE TABLET */
@media (max-width: 834px) {
  .whitelabel-banner {
    background: linear-gradient(120deg, #344865 0%, #4a79a9 100%) !important;
    min-height: 450px;
    text-align: left;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 32px;
  }

  .banner-desc {
    font-size: 20px;
    max-width: 100%;
  }

  .section-benefit {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .cta-card {
    padding: 50px 30px;
    text-align: left;
  }

  .cta-label {
    justify-content: left;
  }

  .cta-heading {
    font-size: 24px;
  }

  .btn-cta-wa {
    margin: 0 auto;
  }
}

@media (max-width: 414px) {
  section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .whitelabel-banner {
    background: linear-gradient(120deg, #344865 0%, #4a79a9 100%) !important;
    margin-top: 50px !important;
    min-height: 380px;
    text-align: left;
    padding: 20px 0;
  }

  .banner-title,
  .section-title {
    font-size: 26px;
  }

  .banner-subtitle {
    font-size: 26px;
  }

  .banner-desc {
    font-size: 16px;
    max-width: 100%;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-benefit {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .benefit-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center !important;
  }

  .benefit-icon-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-heading {
    font-size: 18px;
  }

  .btn-cta-wa {
    width: 100%;
    font-size: 14px;
  }
}

/* ========= WHITELABEL ============ */

/* ========= EVENT MANAGEMENT ============ */

.event-mgmt-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
  width: 100%;
  position: relative;
  margin-top: 70px;
  color: #fff;
}

.event-mgmt-banner .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
  opacity: 0.95;
}

.banner-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 95%;
  text-align: justify;
}

.banner-info-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 15px 25px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(5px);
  max-width: 90%;
  margin-top: 10px;
}

/*  BENEFIT SECTION */
.section-benefit {
  background-color: #f1f8fd;
  padding-top: 80px;
  padding-bottom: 60px;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #7eb6fc 0%, #243d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.benefit-card {
  background: #fff;
  border: 1px solid #d5d7ea;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.benefit-title {
  font-weight: 700;
  font-size: 18px;
  color: #1b2d44;
  margin-bottom: 10px;
  min-height: 44px;
}

.benefit-desc {
  font-weight: 400;
  font-size: 15px;
  color: #484c71;
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA */
.cta-card {
  background: linear-gradient(180deg, #363955 0%, #606596 100%);
  border-radius: 12px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cta-label {
  font-weight: 600;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 5px !important;
}

.cta-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* STEPS SECTION   */
.section-steps {
  background-color: #f1f8fd;
  padding-top: 50px;
}

.step-card-wrapper {
  position: relative;
  padding-top: 20px;
  height: 100%;
}

.step-number-img {
  position: absolute;
  top: 0;
  right: 20px;
  width: 60px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 30px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon-main {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.step-title {
  font-weight: 700;
  font-size: 20px;
  color: #101828;
  margin-bottom: 15px;
}

.step-desc {
  font-weight: 400;
  font-size: 16px;
  color: #1b2d44;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.step-line {
  width: 50px;
  height: 5px;
  border-radius: 5px;
}

.section-build {
  background: linear-gradient(180deg, #363955 0%, #606596 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.build-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #edf2f9;
}

.build-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.build-note {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

.btn-build-blue {
  display: inline-block;
  background: linear-gradient(180deg, #4e82c0 0%, #3c6490 100%);
  border: 1px solid #5b8ec5;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-build-blue:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-build-white {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 15px;
  color: #2a3f53;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-build-white:hover {
  color: #1b2d44;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.btn-build-white:focus {
  outline: none;
}

.custom-modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background-color: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-inner {
  width: 50px;
  height: 50px;
  border: 3px solid #5c88c4;
  color: #5c88c4;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-custom-title {
  color: #4c80c2;
  font-weight: 600;
  font-size: 24px;
}

.modal-custom-text {
  color: #2e4d74;
  font-size: 16px;
  line-height: 1.5;
}

.modal-custom-text-small {
  color: #5a5f8d;
  font-size: 14px;
  line-height: 1.4;
}

.btn-custom-ok {
  background: linear-gradient(180deg, #4c80c2 0%, #345d8f 100%);
  box-shadow: 0 4px 6px rgba(52, 93, 143, 0.4);
  color: white;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  transition: transform 0.2s;
}

.btn-custom-ok:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-custom-ok:active {
  transform: translateY(0);
}

/*  RESPONSIVE TABLET  */
@media (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-mgmt-banner {
    min-height: 500px;
    padding: 60px 0;
    text-align: center;
    background-position: center center !important;
  }

  .banner-title {
    font-size: 40px;
  }

  .banner-desc {
    margin: 0 auto 20px auto;
  }

  .banner-info-box {
    margin: 0 auto;
  }

  .col-lg-7.col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .benefit-card {
    padding: 20px;
    height: auto;
  }

  .cta-card {
    padding: 40px;
    text-align: center;
  }

  .cta-card .d-flex.align-items-start {
    flex-direction: column;
    align-items: center !important;
  }

  .cta-icon-wrapper {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }

  .cta-heading {
    font-size: 16px;
    text-align: left;
  }

  .step-card {
    padding: 30px 20px;
  }

  .section-build {
    text-align: center;
    padding: 60px 0;
  }

  .build-title {
    font-size: 28px;
  }

  .build-desc {
    margin: 0 auto 20px auto;
  }

  .section-build .d-flex {
    justify-content: center !important;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-mgmt-banner {
    min-height: auto;
    padding: 60px 0;
    margin-top: 50px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 20px;
  }

  .banner-desc {
    font-size: 14px;
  }

  .banner-info-box {
    font-size: 13px;
    padding: 15px;
  }

  .section-benefit {
    padding: 20px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefit-icon-box {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .benefit-title {
    min-height: auto;
    margin-bottom: 5px;
  }

  .section-cta {
    padding-bottom: 30px !important;
  }

  .cta-card {
    padding: 20px 20px;
  }

  .cta-label {
    justify-content: start;
  }

  .section-steps {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .step-card-wrapper {
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .step-card {
    text-align: center;
    align-items: center;
    padding: 30px 20px;
  }

  .step-desc {
    font-size: 15px;
    text-align: center;
  }

  .step-number-img {
    right: 10px;
    width: 50px;
  }

  .section-build {
    padding: 20px 0;
  }

  .build-title {
    font-size: 24px;
  }

  .build-desc {
    font-size: 14px;
  }

  .btn-build-blue,
  .btn-build-white {
    width: 100%;
    margin-right: 0 !important;
    display: block;
    margin-bottom: 10px;
  }

  .section-build .d-flex {
    flex-direction: column;
  }
}

/* ========= EVENT MANAGEMENT ============ */

/* ========= API SERVICES ============ */

.banner-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  width: 100%;
  position: relative;
  margin-top: 70px;
  color: #fff;
}

.banner-title {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}

.banner-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 90%;
}

.section-benefit {
  background-color: #f1f8fd;
  padding-top: 80px;
  padding-bottom: 60px;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #7eb6fc 0%, #243d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: #333;
}

.benefit-card {
  background: #fff;
  border: 1px solid #c8d8ec;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-icon-wrapper {
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-icon {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.benefit-title {
  font-weight: 700;
  font-size: 18px;
  color: #223a57;
  margin-bottom: 10px;
}

.benefit-desc {
  font-weight: 400;
  font-size: 14px;
  color: #1b2d44;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-card {
  background: linear-gradient(90deg, #3c6490 0%, #5b8ec5 100%);
  border-radius: 12px;
  padding: 30px 40px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cta-label {
  font-weight: 600;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 5px !important;
}

.cta-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.section-sandbox {
  background-color: #fff;
}

.sandbox-title {
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #7eb6fc 0%, #243d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sandbox-desc {
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.sandbox-desc a {
  color: #3c6490;
  text-decoration: none;
  font-weight: 500;
}

.step-card {
  background: #fff;
  border: 1px solid #4a86c6;
  border-left: 8px solid #4a86c6;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  box-shadow: none;
  transition: transform 0.2s;
}

.step-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.step-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.step-text {
  font-weight: 700;
  color: #476c8e;
  font-size: 15px;
  line-height: 1.5;
}

.sandbox-cta-banner {
  background: linear-gradient(90deg, #e4ecf6 0%, #77b4ed66 100%);
  border-radius: 8px;
  padding: 15px;
  font-weight: 500;
  font-size: 16px;
}

.sandbox-table {
  border: 1px solid #396092;
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.sandbox-table thead th {
  background-color: #396092;
  color: white;
  font-weight: 600;
  padding: 15px;
}

.sandbox-table tbody td {
  padding: 15px;
  vertical-align: middle;
  color: black;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  font-weight: 400;
}

.sandbox-table tbody tr:last-child td {
  border-bottom: none;
}

.bg-light-blue {
  background-color: #edf2f9;
}

.swipe-hint-text {
  font-size: 14px;
  color: #243b55;
  font-weight: 500;
  font-style: italic;
}

.section-build {
  background: linear-gradient(120deg, #344865 0%, #4a79a9 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.build-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #edf2f9;
}

.build-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.build-note {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

.btn-build-blue {
  display: inline-block;
  background: linear-gradient(180deg, #4e82c0 0%, #3c6490 100%);
  border: 1px solid #5b8ec5;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-build-blue:hover {
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-build-white {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 15px;
  color: #2a3f53;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-build-white:hover {
  color: #1b2d44;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
}

.btn-build-white:focus {
  outline: none;
}

@media (max-width: 834px) {
  .banner-section {
    background-image: none !important;
    background: linear-gradient(120deg, #344865 0%, #4a79a9 100%) !important;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    margin-top: 0;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 24px;
  }

  .section-title,
  .sandbox-title,
  .build-title {
    font-size: 32px;
  }

  .benefit-card {
    padding: 20px;
  }

  .cta-card {
    padding: 30px;
  }
}

@media (max-width: 414px) {
  .section-benefit,
  .section-cta,
  .section-sandbox,
  .section-build {
    padding-left: 18px;
    padding-right: 18px;
  }

  .banner-section {
    background-image: none !important;
    background: linear-gradient(120deg, #344865 0%, #4a79a9 100%) !important;
    min-height: auto;
    padding: 100px 18px 40px 18px;
    text-align: left !important;
    margin-top: 0;
  }

  .banner-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .banner-subtitle {
    font-size: 26px;
    line-height: 1.4;
  }

  .banner-desc {
    font-size: 16px;
    margin-bottom: 0;
  }

  .section-benefit,
  .section-sandbox,
  .section-build {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .section-title,
  .sandbox-title,
  .build-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-subtitle,
  .sandbox-desc {
    font-size: 14px;
  }

  .benefit-card {
    flex-direction: row;
    padding: 20px;
  }

  .benefit-icon-wrapper {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .benefit-title {
    font-size: 16px;
  }

  .cta-card {
    padding: 25px;
  }

  .cta-card .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }

  .cta-icon-wrapper {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }

  .cta-heading {
    font-size: 15px;
    line-height: 1.5;
  }

  .step-card {
    padding: 15px;
  }

  .step-text {
    font-size: 13px;
  }

  .table-responsive {
    border: 1px solid #eee;
  }

  .sandbox-table th,
  .sandbox-table td {
    font-size: 13px;
    padding: 10px;
    white-space: nowrap;
  }

  .build-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .btn-build-blue,
  .btn-build-white {
    width: 100%;
    display: block;
    margin-right: 0 !important;
    margin-bottom: 15px;
    text-align: center;
  }

  .build-note {
    font-size: 13px;
  }
}

/* ========= API SERVICES ============ */
