/*
* ===================================================================
* SUB-PILLAR PAGE VARIATIONS
* Based on "Make Rich Real" theme actual structure
* 9+ Section Variations for Visual Variety
* ===================================================================
*/

/* ===================================================================
CSS VARIABLES
=================================================================== */

:root {
  --mobile-box-gap: 50px;
  --mobile-box-with-icon-gap: 80px;
  --desktop-number-icon-size: 90px;
  --mobile-number-icon-size: 80px;
  --desktop-check-icon-size: 105px;
  --mobile-check-icon-size: 80px;
  --desktop-icon-size-step-section: 65px;
  --mobile-icon-size-step-section: 65px;
}

/* ===================================================================
HERO TYPOGRAPHY - Special Styling for Hero Elements
=================================================================== */
h1.h1.hero {
  color: #fff;
}
/* ===================================================================
VARIATION 1: HERO SECTION - DARK OVERLAY WITH IMAGE
Pattern: hero-section (from backup modules)
Use: Main hero, dramatic impact
=================================================================== */

.hero-section-v1 {
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section-v1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #00191e;
  opacity: 0.7;
  z-index: 1;
}

.hero-section-v1 > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.hero-section-v1 .hs-container {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-section-v1 .hs-container .hsc-wrapper {
  width: 100%;
  max-width: 1256px;
}

/* ===================================================================
VARIATION 2: HERO SECTION - TEAL GRADIENT BACKGROUND
Pattern: Modified hero-section with gradient
Use: Clean, modern hero without image
=================================================================== */

.hero-section-v2 {
  padding: 110px 20px;
  position: relative;
  background: linear-gradient(135deg, #007681 0%, #00313c 100%);
}

.hero-section-v2 .hs-container {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-section-v2 .hs-container .hsc-wrapper {
  width: 100%;
  max-width: 1256px;
  text-align: center;
}

/* ===================================================================
VARIATION 3: IMAGE-CONTENT SECTION - IMAGE LEFT
Pattern: contant-image-section (from backup modules)
Use: Alternating content/image sections
=================================================================== */

.contant-image-section-v3 {
  background-color: #ffffff;
  padding: 72px 20px;
  overflow: hidden;
}

.contant-image-section-v3 .cis-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.contant-image-section-v3 .cis-container .cisc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: top;
}

.contant-image-section-v3 .cis-container .cisc-row .ciscr-col1 {
  flex: 1;
}

.contant-image-section-v3 .cis-container .cisc-row .ciscr-col2 {
  width: calc(50% - 66px);
}

.contant-image-section-v3 .cis-container .cisc-row .ciscr-col2.ciscrc-left {
  order: -1;
}

.contant-image-section-v3 .cis-container .cisc-row .ciscr-col2 .ciscrc-img img {
  width: 100%;
  border-radius: 8px;
}

/* ===================================================================
VARIATION 4: IMAGE-CONTENT SECTION - LIGHT GRAY BACKGROUND
Pattern: Same as v3 but with gray background
Use: Alternate with white sections
=================================================================== */

.contant-image-section-v4 {
  background-color: #ebeff3;
  padding: 72px 20px;
  overflow: hidden;
}

.contant-image-section-v4 .cis-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.contant-image-section-v4 .cis-container .cisc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.contant-image-section-v4 .cis-container .cisc-row .ciscr-col1 {
  flex: 1;
}

.contant-image-section-v4 .cis-container .cisc-row .ciscr-col2 {
  width: calc(50% - 66px);
}

.contant-image-section-v4 .cis-container .cisc-row .ciscr-col2.ciscrc-left {
  order: -1;
}

.contant-image-section-v4 .cis-container .cisc-row .ciscr-col2 .ciscrc-img img {
  width: 100%;
  border-radius: 8px;
}
.disclosure-section {
  padding: 0 20px 50px;
}
/* ===================================================================
VARIATION 5: FEATURES SECTION - 3 COLUMN CARDS WITH SHADOW
Pattern: features-section (from backup modules)
Use: Service features, benefits, key points
=================================================================== */

.features-section-v5 {
  padding: 75px 20px;
  background-color: #ebeff3;
}

.features-section-v5 .fs-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

.features-section-v5 .fs-container .fsc-head,
.features-section-v5 .fs-container .fsc-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.features-section-v5 .fs-container .fsc-head .fsch-wrapper {
  width: 100%;
  max-width: 1185px;
}


.features-section-v5 .fs-container .fsc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.features-section-v5 .fs-container .fsc-row .fscr-box {
  width: calc(33.33% - 40px);
}

.features-section-v5 .fs-container .fsc-row .fscrb-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(174, 184, 197, 1);
  background-color: #ffffff;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.features-section-v5 .fs-container .fsc-row .fscrb-wrapper .fscrbw-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.features-section-v5 .fs-container .fsc-row .fscrb-wrapper .fscrbw-img img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

/* Alternative class names for V5 (used in some templates) */
.features-section-v5 .fsc-cardswrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.features-section-v5 .fsc-cardswrapper .fscc-card {
  width: calc(50% - 30px);
  box-shadow: 0px 10px 30px 0px rgba(174, 184, 197, 1);
  background-color: #ffffff;
  padding: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-img img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-text {
  flex: 1;
  text-align: left;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-text h3 {
  text-align: center;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-text ul {
  text-align: left;
  list-style-position: inside;
  padding-left: 0;
}

.features-section-v5 .fsc-cardswrapper .fscc-card .fsccc-text ul li {
  margin-bottom: 12px;
}

/* Mobile responsive for V5 card wrapper */
@media (max-width: 767px) {
  .features-section-v5 .fsc-cardswrapper .fscc-card {
    width: 100%;
  }
}

/* ===================================================================
VARIATION 6: FEATURES SECTION - 4 COLUMN GRID
Pattern: features-section with four-column
Use: More items to display, compact layout
=================================================================== */

.features-section-v6 {
  padding: 75px 20px;
  background-color: #ffffff;
}

.features-section-v6 .fs-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

.features-section-v6 .fs-container .fsc-head,
.features-section-v6 .fs-container .fsc-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}



.features-section-v6 .fs-container .fsc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  justify-content: center;
}

.features-section-v6 .fs-container .fsc-row .fscr-box {
  width: calc(25.33% - 26px);
}

.features-section-v6 .fs-container .fsc-row .fscrb-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(174, 184, 197, 1);
  background-color: #ffffff;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

/* Alternative class names used in some templates */
.features-section-v6 .fsc-cardswrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  justify-content: center;
}

.features-section-v6 .fsc-cardswrapper .fscc-card {
  width: calc(50% - 15px);
  background-color: #ffffff;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.features-section-v6 .fsc-cardswrapper .fscc-card .fsccc-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.features-section-v6 .fsc-cardswrapper .fscc-card .fsccc-img img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  object-position: center;
}

.features-section-v6 .fsc-cardswrapper .fscc-card .fsccc-text {
  flex: 1;
}

/* Mobile responsive for card wrapper */
@media (max-width: 767px) {
  .features-section-v6 .fsc-cardswrapper .fscc-card {
    width: 100%;
  }
}

/* ===================================================================
VARIATION 7: INFORMATION SECTION - BORDERED COLUMNS
Pattern: information-section (features-section-two from backup)
Use: Text-heavy features with visual separators
=================================================================== */

.information-section-v7 {
  padding: 72px 20px;
  background-color: #fff;
}

.information-section-v7 .is-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

.information-section-v7 .is-container .isc-head {
  max-width: 1054px;
  margin: 0 auto;
  margin-bottom: 65px;
  text-align: center;
}

.information-section-v7 .is-container .isc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.information-section-v7 .is-container .isc-row .iscr-box {
  width: calc(33.33% - 10px);
  text-align: center;
  padding: 30px 30px;
  border-left: 3px solid #c7c7c7;
}

.information-section-v7 .is-container .isc-row .iscr-box:first-child {
  border: none;
}

.information-section-v7 .is-container .isc-row img {
  margin-bottom: 22px;
  width: var(--desktop-number-icon-size) !important;
  height: var(--desktop-number-icon-size) !important;
  object-fit: contain;
  object-position: center;
}

/* Alternative class names for information-section-v7 (used in Asset Protection templates) */
.information-section-v7 .is-container .isc-header {
  max-width: 1054px;
  margin: 0 auto;
  margin-bottom: 65px;
  text-align: center;
}

.information-section-v7 .is-container .isc-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.information-section-v7 .is-container .isc-wrapper .iscw-col {
  width: calc(33.33% - 10px);
  text-align: center;
  padding: 30px 30px;
  border-left: 3px solid #c7c7c7;
}

.information-section-v7 .is-container .isc-wrapper .iscw-col:first-child {
  border: none;
}

.information-section-v7 .is-container .isc-wrapper .iscw-col .iscwc-icon {
  margin-bottom: 22px;
}

.information-section-v7 .is-container .isc-wrapper .iscw-col .iscwc-icon img {
  width: var(--desktop-number-icon-size) !important;
  height: var(--desktop-number-icon-size) !important;
  object-fit: contain;
  object-position: center;
}

.information-section-v7 .is-container .isc-wrapper .iscw-col .iscwc-contant {
  text-align: center;
}

/* ===================================================================
VARIATION 8: STEPS SECTION - NUMBERED BOXES WITH TOP ICONS
Pattern: features-section2 (steps-section from backup)
Use: Process steps, sequential information
=================================================================== */

.features-section-v8 {
  padding: 75px 20px;
  background-color: #ebeff3;
}

.features-section-v8 .fs-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.features-section-v8 .fs-container .fsc-head,
.features-section-v8 .fs-container .fsc-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 55px;
  text-align: center;
}

/* Ensure proper heading styling for V8 */


.features-section-v8 .fs-container .fsc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.features-section-v8 .fs-container .fsc-row .fscr-box {
  width: calc(33.33% - 40px);
  margin-top: 35px;
}

.features-section-v8 .fs-container .fsc-row .fscrb-wrapper {
  background-color: #fff;
  box-shadow: 0px 10px 16px 0px rgba(188, 207, 233, 0.6);
  padding: 28px;
  padding-top: 50px;
  position: relative;
  text-align: center;
  height: 100%;
  border-radius: 8px;
}

.features-section-v8 .fs-container .fsc-row .fscrb-wrapper .fscrbw-number {
  background-color: #007681;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 50px;
  font-weight: 600;
  justify-content: center;
  line-height: 100%;
  position: absolute;
  width: var(--desktop-icon-size-step-section) !important;
  height: var(--desktop-icon-size-step-section) !important;
  left: calc(50% - (var(--desktop-icon-size-step-section) / 2));
  top: calc(0px - (var(--desktop-icon-size-step-section) / 2));
  font-family: arial, helvetica, sans-serif;
}

/* Alternative class names for V8 (used in some templates) */
.features-section-v8 .fsc-cardswrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.features-section-v8 .fsc-cardswrapper .fscc-card {
  width: calc(50% - 30px);
  margin-top: 35px;
  background-color: #fff;
  box-shadow: 0px 10px 16px 0px rgba(188, 207, 233, 0.6);
  padding: 28px;
  padding-top: 50px;
  position: relative;
  text-align: center;
  border-radius: 8px;
}

.features-section-v8 .fsc-cardswrapper .fscc-card .fsccc-number {
  background-color: #007681;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
  justify-content: center;
  line-height: 100%;
  position: absolute;
  width: var(--desktop-icon-size-step-section) !important;
  height: var(--desktop-icon-size-step-section) !important;
  left: calc(50% - (var(--desktop-icon-size-step-section) / 2));
  top: calc(0px - (var(--desktop-icon-size-step-section) / 2));
  font-family: arial, helvetica, sans-serif;
}

.features-section-v8 .fsc-cardswrapper .fscc-card .fsccc-text {
  flex: 1;
}
img {
  max-width: 100%;
  height: auto;
}
/* Mobile responsive for V8 card wrapper */
@media (max-width: 767px) {
  .features-section-v8 .fsc-cardswrapper .fscc-card {
    width: 100%;
  }
}

/* ===================================================================
VARIATION 9: CTA SECTION - SOLID COLOR WITH GRADIENT
Pattern: contant-section (from backup modules)
Use: Call-to-action, conversion sections
=================================================================== */

.contant-section-v9 {
  padding: 90px 20px;
  position: relative;
  background: #00313C;
}
.ciscrc-contant.new-dew-content .h3-underline {
  color: #007681;
}
.contant-section-v9 .cs-container,
.disclosure-container{
  margin: 0 auto;
  max-width: 1256px;
  width: 100%;
  position: relative;
}

.contant-section-v9 .cs-container .csc-wrapper {
  text-align: center;
}

.contant-section-v9 .cs-container .csc-wrapper .csc-text {
  max-width: 1126px;
  width: 100%;
  margin: 0 auto;
}

.contant-section-v9 .cs-container .csc-wrapper .cscw-button {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}

/* White text styling for CTA V9 */
.contant-section-v9 h2,
.contant-section-v9 h3,
.contant-section-v9 h4,
.contant-section-v9 p,
.contant-section-v9 li {
  color: #ffffff !important;
}

.contant-section-v9 a:not(.ndc-btn) {
  color: #88dbdf !important;
  text-decoration: underline;
}

.contant-section-v9 a:not(.ndc-btn):hover {
  color: #ffffff !important;
}

/* ===================================================================
VARIATION 10: CTA SECTION - IMAGE BACKGROUND WITH OVERLAY
Pattern: contant-section with image (from backup)
Use: Dramatic CTA with background image
=================================================================== */

.contant-section-v10 {
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.contant-section-v10 .cs-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(3, 23, 27);
  z-index: 2;
  opacity: 0.5;
}

.contant-section-v10 > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}

.contant-section-v10 .cs-container {
  margin: 0 auto;
  max-width: 1256px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.contant-section-v10 .cs-container .csc-wrapper {
  text-align: center;
}

.contant-section-v10 .cs-container .csc-wrapper .csc-text {
  max-width: 1126px;
  width: 100%;
  margin: 0 auto;
}

.contant-section-v10 .cs-container .csc-wrapper .cscw-button {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}

/* White text styling for CTA V10 */
.contant-section-v10 h2,
.contant-section-v10 h3,
.contant-section-v10 h4,
.contant-section-v10 p,
.contant-section-v10 li {
  color: #ffffff !important;
}

.contant-section-v10 a:not(.ndc-btn) {
  color: #88dbdf !important;
  text-decoration: underline;
}

.contant-section-v10 a:not(.ndc-btn):hover {
  color: #ffffff !important;
}

/* ===================================================================
VARIATION 11: LIGHT TEAL BACKGROUND SECTION
Pattern: Custom variation of contant-image-section
Use: Soft highlight sections
=================================================================== */

.contant-image-section-v11 {
  background-color: #DDE5ED;
  padding: 72px 20px;
  overflow: hidden;
}

.contant-image-section-v11 .cis-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.contant-image-section-v11 .cis-container .cisc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}

.contant-image-section-v11 .cis-container .cisc-row .ciscr-col1 {
  flex: 1;
}

.contant-image-section-v11 .cis-container .cisc-row .ciscr-col2 {
  width: calc(50% - 66px);
}

.contant-image-section-v11 .cis-container .cisc-row .ciscr-col2.ciscrc-left {
  order: -1;
}

.contant-image-section-v11
.cis-container
.cisc-row
.ciscr-col2
.ciscrc-img
img {
  width: 100%;
  border-radius: 8px;
  margin: 20px;
}

/* ===================================================================
VARIATION 12: FEATURES - WHITE BACKGROUND WITH ICONS
Pattern: features-section on white background
Use: Services, benefits on white
=================================================================== */

.features-section-v12 {
  padding: 75px 20px;
  background-color: #ffffff;
}

.features-section-v12 .fs-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

.features-section-v12 .fs-container .fsc-head {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.features-section-v12 .fs-container .fsc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.features-section-v12 .fs-container .fsc-row .fscr-box {
  width: calc(33.33% - 40px);
}

.features-section-v12 .fs-container .fsc-row .fscrb-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(174, 184, 197, 1);
  background-color: #ffffff;
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

/* ===================================================================
RESPONSIVE DESIGN - MOBILE ADAPTATIONS
=================================================================== */

@media (max-width: 1024px) {
  .contant-image-section-v3 .cis-container .cisc-row .ciscr-col1,
  .contant-image-section-v4 .cis-container .cisc-row .ciscr-col1,
  .contant-image-section-v11 .cis-container .cisc-row .ciscr-col1 {
    width: 100%;
  }

  .contant-image-section-v3 .cis-container .cisc-row .ciscr-col2,
  .contant-image-section-v4 .cis-container .cisc-row .ciscr-col2,
  .contant-image-section-v11 .cis-container .cisc-row .ciscr-col2 {
    width: 100%;
  }

  .information-section-v7 .is-container .isc-row .iscr-box,
  .information-section-v7 .is-container .isc-wrapper .iscw-col {
    width: calc(50% - 10px);
  }

  .features-section-v5 .fs-container .fsc-row .fscr-box,
  .features-section-v12 .fs-container .fsc-row .fscr-box {
    width: calc(50% - 40px);
  }

  .features-section-v6 .fs-container .fsc-row .fscr-box {
    width: calc(50% - 26px);
  }

  .features-section-v8 .fs-container .fsc-row .fscr-box {
    width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .contant-image-section-v3 .cis-container .cisc-row,
  .contant-image-section-v4 .cis-container .cisc-row,
  .contant-image-section-v11 .cis-container .cisc-row {
    gap: 50px;
  }

  .features-section-v5 .fs-container .fsc-row,
  .features-section-v12 .fs-container .fsc-row,
  .features-section-v8 .fs-container .fsc-row {
    gap: 50px;
  }

  .features-section-v5 .fs-container .fsc-row .fscr-box,
  .features-section-v6 .fs-container .fsc-row .fscr-box,
  .features-section-v8 .fs-container .fsc-row .fscr-box,
  .features-section-v12 .fs-container .fsc-row .fscr-box {
    width: 100%;
  }

  .information-section-v7 .is-container .isc-row .iscr-box,
  .information-section-v7 .is-container .isc-wrapper .iscw-col {
    width: 100%;
    border: none;
  }

  .information-section-v7 .is-container .isc-row img,
  .information-section-v7 .is-container .isc-wrapper img {
    width: var(--mobile-number-icon-size) !important;
    height: var(--mobile-number-icon-size) !important;
  }

  .features-section-v8 .fs-container .fsc-row .fscrb-wrapper .fscrbw-number {
    width: var(--mobile-icon-size-step-section) !important;
    height: var(--mobile-icon-size-step-section) !important;
    left: calc(50% - (var(--mobile-icon-size-step-section) / 2));
    top: calc(0px - (var(--mobile-icon-size-step-section) / 2));
  }
}

@media (max-width: 767.98px) {
  .hero-section-v1 .hs-container .hsc-wrapper,
  .hero-section-v2 .hs-container .hsc-wrapper {
    max-width: 100%;
  }

  .hero-section-v1 .hs-container .hsc-wrapper h1 br,
  .hero-section-v1 .hs-container .hsc-wrapper h3 br,
  .hero-section-v2 .hs-container .hsc-wrapper h1 br,
  .hero-section-v2 .hs-container .hsc-wrapper h3 br {
    display: none;
  }
}

/* ===================================================================
COMPARISON BOX COMPONENT
Pattern: Styled comparison/list box with gradient header
Use: State comparisons, feature lists, highlight boxes
=================================================================== */

.comparison-box {
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-box .cb-header {
  background: linear-gradient(135deg, #007681 0%, #00313c 100%);
  padding: 24px 40px;
}

.comparison-box .cb-header h2,
.comparison-box .cb-header h3 {
  color: #ffffff !important;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.comparison-box .cb-content {
  background: #ffffff;
  padding: 40px;
}

.comparison-box .cb-content p {
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 18px;
  color: #00313c;
}

.comparison-box .cb-content p:last-child {
  margin-bottom: 0;
}

.comparison-box .cb-content strong {
  color: #007681;
  font-weight: 700;
  font-size: 18px;
}

.comparison-box .cb-content span {
  color: #00313c;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-box {
    margin: 30px 20px;
  }

  .comparison-box .cb-header {
    padding: 20px 24px;
  }

  .comparison-box .cb-header h2,
  .comparison-box .cb-header h3 {
    font-size: 26px;
  }

  .comparison-box .cb-content {
    padding: 30px 24px;
  }

  .comparison-box .cb-content p,
  .comparison-box .cb-content strong,
  .comparison-box .cb-content span {
    font-size: 16px;
  }

  .comparison-box .cb-content p {
    margin-bottom: 20px;
  }
}

/* ===================================================================
UTILITY CLASSES
=================================================================== */

.teal-italic {
  color: #007681 !important;
  font-style: italic;
}
.teal-bold {
  color: #007681 !important;
  font-weight: bold;
}
.coral-bold {
  color: #db864e !important;
  font-weight: bold;
}
.coral-text {
  color: #db864e !important;
}
.gold-text {
  color: #dfd1a7 !important;
}
.white-text {
  color: #ffffff !important;
}
.p-0 {
  padding: 0 !important;
}

.no-bullets,
.no-bullets ul,
.no-bullets ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.no-bullets li {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.checkmark-list,
.checkmark-list ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.checkmark-list li {
  position: relative;
  padding-left: 35px !important;
  margin-bottom: 12px;
}

.checkmark-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  color: #007681;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}

/* Alternative: Circle checkmark version */
.checkmark-circle,
.checkmark-circle ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.checkmark-circle li {
  position: relative;
  padding-left: 35px !important;
  margin-bottom: 12px;
}

.checkmark-circle li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  top: 0;
  color: #007681;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

/* H3 with thick underline */
.h3-underline,
h3.underline {
  padding-bottom: 12px;
  border-bottom: 4px solid #c7c7c7;
  margin-bottom: 20px;
  display: block;
}

/* Alternative: Teal underline version */
.h3-underline-teal,
h3.underline-teal {
  padding-bottom: 12px;
  border-bottom: 4px solid #007681;
  margin-bottom: 20px;
  display: block;
}

/* Alternative: Beige/Gold underline version */
.h3-underline-gold,
h3.underline-gold {
  padding-bottom: 12px;
  border-bottom: 4px solid #dfd1a7;
  margin-bottom: 20px;
  display: block;
}

/* Text highlight/underline effect */
.text-highlight {
  background: linear-gradient(180deg, transparent 60%, #dfd1a7a8 60%);
  background-size: 100% 100%;
  padding: 0 4px;
  display: inline;
}

/* Alternative: Coral brand color version */
.text-highlight-coral {
  background: linear-gradient(180deg, transparent 60%, #db864e 60%);
  background-size: 100% 100%;
  padding: 0 4px;
  display: inline;
}

/* Alternative: Teal brand color version */
.text-highlight-teal {
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(223, 209, 167, 0.3) 60%
  );
  background-size: 100% 100%;
  padding: 0 4px;
  display: inline;
}

/* Thicker underline version (yellow) */
.text-underline-thick {
  background: linear-gradient(180deg, transparent 70%, #ffd166 70%);
  background-size: 100% 100%;
  padding: 0 4px;
  display: inline;
}

/* ===================================================================
DAPT OVERVIEW CUSTOM LAYOUT
Pattern: Custom two-column layout with image and comparison box on right
Use: DAPT Overview section with specific layout requirements
=================================================================== */

.dapt-overview-custom {
  background-color: #ffffff;
  padding: 72px 20px;
  overflow: hidden;
}

.dapt-overview-custom .dapt-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.dapt-overview-custom .dapt-row {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: start;
}

.dapt-overview-custom .dapt-left-col {
  padding-right: 20px;
}

.dapt-overview-custom .dapt-right-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dapt-overview-custom .dapt-image {
  width: 100%;
  position: sticky;
  top: 20px;
}

.dapt-overview-custom .dapt-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Comparison box within DAPT section */
.dapt-overview-custom .comparison-box {
  margin: 0;
  max-width: 100%;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .dapt-overview-custom .dapt-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dapt-overview-custom .dapt-left-col {
    padding-right: 0;
  }

  .dapt-overview-custom .dapt-image {
    position: relative;
    top: 0;
  }

  .dapt-overview-custom .dapt-right-col {
    order: -1;
  }
}

@media (max-width: 768px) {
  .dapt-overview-custom {
    padding: 50px 20px;
  }

  .dapt-overview-custom .dapt-row {
    gap: 30px;
  }

  .dapt-overview-custom .dapt-right-col {
    gap: 30px;
  }
}

/* ===================================================================
OFFSHORE TRUST CARDS LAYOUT
Pattern: Card-based horizontal layout with centered headers
Use: Offshore Trust Overview section with card groupings
=================================================================== */

.offshore-trust-cards {
  background-color: #EBEFF3;
  padding: 72px 20px;
  overflow: hidden;
}

.offshore-trust-cards .otc-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

/* Header Section - Centered */
.offshore-trust-cards .otc-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.offshore-trust-cards .otc-header h2 {
  margin-bottom: 20px;
}

.offshore-trust-cards .otc-header p {
  font-size: 20px;
  line-height: 30px;
}

/* Section Title - Centered */
.offshore-trust-cards .otc-section {
  margin-bottom: 60px;
}

.offshore-trust-cards .otc-section:last-child {
  margin-bottom: 0;
}

.offshore-trust-cards .otc-section-title {
  text-align: center;
}

/* Cards Container - Horizontal Layout */
.offshore-trust-cards .otc-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Comparison boxes within offshore cards */
.offshore-trust-cards .comparison-box {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 380px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.offshore-trust-cards .comparison-box .cb-header {
  flex-shrink: 0;
}

.offshore-trust-cards .comparison-box .cb-header h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
}

.offshore-trust-cards .comparison-box .cb-content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.offshore-trust-cards .comparison-box .cb-content p {
  font-size: 18px;
  line-height: 26px;
  color: #00313c;
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .offshore-trust-cards .otc-cards {
    gap: 25px;
  }

  .offshore-trust-cards .comparison-box {
    min-width: 250px;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .offshore-trust-cards {
    padding: 50px 20px;
  }

  .offshore-trust-cards .otc-header {
    margin-bottom: 40px;
  }

  .offshore-trust-cards .otc-section {
    margin-bottom: 40px;
  }

  .offshore-trust-cards .otc-section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .offshore-trust-cards .otc-cards {
    flex-direction: column;
    gap: 20px;
  }

  .offshore-trust-cards .comparison-box {
    max-width: 100%;
    min-width: 100%;
  }

  .offshore-trust-cards .comparison-box .cb-header h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .offshore-trust-cards .comparison-box .cb-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ===================================================================
COST OPTIMIZATION GRID - 2x2 LAYOUT
Pattern: Simple 2-column grid without cards
Use: Technique lists, feature grids
=================================================================== */

/* Speech Bubbles RIGHT */
.speech-bubble-right {
  position: relative;
  background: #dfd1a7;
  border-radius: 0.4em;
  padding: 20px;
  margin: 20px 5em;
}

.speech-bubble-right::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 1.906em solid transparent;
  border-left-color: #dfd1a7;
  border-right: 0;
  border-top: 0;
  margin-top: -0.953em;
  margin-right: -1.906em;
}

/* Speech Bubbles LEFT */
.speech-bubble-left {
  position: relative;
  background: #DDE5ED;
  border-radius: 0.4em;
  padding: 20px;
  margin: 20px;
}
}

.speech-bubble-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 1.906em solid transparent;
  border-right-color: #DDE5ED;
  border-left: 0;
  border-top: 0;
  margin-top: -0.953em;
  margin-left: -1.906em;
}
/* "dancing" (bouncing) dots */
.typing-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; /* Container height for visibility */
}

.dot {
  fill: #999; /* Dot color */
  animation: bounce 1.4s infinite ease-in-out both;
}

/* Delay the animation for each subsequent dot */
.dot1 { animation-delay: -0.32s; }
.dot2 { animation-delay: -0.16s; }
.dot3 { animation-delay: 0s; }

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0); /* Dots hidden or small at start/end */
  }
  40% {
    transform: scale(1); /* Dots full size in the middle of the animation */
  }
}


/* ===================================================================
COST OPTIMIZATION GRID - 2x2 LAYOUT
Pattern: Simple 2-column grid without cards
Use: Technique lists, feature grids
=================================================================== */

.cost-optimization-grid {
  background-color: #DDE5ED;
  padding: 72px 20px;
  overflow: hidden;
}

.cost-optimization-grid .cog-container {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
}

.cost-optimization-grid .cog-header {
  text-align: center;
  margin-bottom: 60px;
}

.cost-optimization-grid .cog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  align-items: start;
}

.cost-optimization-grid .cog-item {
  padding: 0;
  background: none;
  box-shadow: none;
  border: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .cost-optimization-grid .cog-grid {
    gap: 50px 60px;
  }
}

@media (max-width: 768px) {
  .cost-optimization-grid {
    padding: 50px 20px;
  }

  .cost-optimization-grid .cog-header {
    margin-bottom: 40px;
  }

  .cost-optimization-grid .cog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================================================================
LAYER 1 CUSTOM LAYOUT
=================================================================== */

.layer1-custom {
  background-color: #ffffff;
  padding: 72px 20px;
  overflow: hidden;
}

.layer1-custom .layer1-container {
  max-width: 1400px;
  margin: 0 auto;
}

.layer1-custom .layer1-row {
  /* display: grid; */
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: start;
}

.layer1-custom .layer1-left-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.layer1-custom .layer1-right-col {
  width: 100%;
  position: sticky;
  top: 20px;
}

.layer1-custom .layer1-image {
  width: 100%;
  margin-bottom: 0;
}

.layer1-custom .layer1-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Two-column comparison boxes */
.layer1-custom .layer1-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.layer1-custom .layer1-box {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.layer1-custom .layer1-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #00313c;
  font-size: 1.4em;
  line-height: 1.3;
  border-bottom: 3px solid #c7c7c7;
  padding-bottom: 12px;
}

.layer1-custom .layer1-box h4 {
  margin-top: 25px;
  margin-bottom: 12px;
  color: #007681;
  font-size: 1.1em;
}

.layer1-custom .layer1-box h4:first-of-type {
  margin-top: 0;
}

.layer1-custom .layer1-box ul {
  margin: 0;
  padding-left: 20px;
}

.layer1-custom .layer1-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.layer1-custom .layer1-box ul li:last-child {
  margin-bottom: 0;
}

.layer1-custom .layer1-box p {
  margin-bottom: 15px;
}

.layer1-custom .layer1-box strong {
  color: #00313c;
}

/* Responsive */
@media (max-width: 1024px) {
  .layer1-custom .layer1-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .layer1-custom .layer1-right-col {
    position: relative;
    top: 0;
    order: -1;
  }

  .layer1-custom .layer1-boxes {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .layer1-custom {
    padding: 40px 20px;
  }

  .layer1-custom .layer1-box h3 {
    font-size: 1.2em;
  }
}

/* ===================================================================
END OF VARIATIONS
=================================================================== */

header.header.headerrel.relativem {
  position: absolute;
}
header.header {
  z-index: 9;
}

.comparison-box .cb-header {
  background: #007681;
  padding: 10px 20px;
  text-align: center;
}
.offshore-trust-cards .comparison-box .cb-content {
  text-align: center;
}
.comparison-box {
  border-radius: 0;
  box-shadow: 0px 3px 30px rgba(174, 184, 197, 0.7);
  border: 1px solid #dae5ec;
}

.offshore-trust-cards .comparison-box .cb-header h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .offshore-trust-cards .comparison-box .cb-header h3 {
    font-size: 20px;
  }
}