/* General Styles */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}
:root {
    --primary-color: #ffffff;
    --secondary-color: #C10230;
    --outline-color: #383D3B;
    --secondary-outline-color: #575757;
    --dark-text-color: #333;
    --light-text-color: #f4f4f4;
    --header-background-color: #0D7000;
    --header-text-color: white;
    --footer-background-color: #333;
    --footer-text-color: white;
    --button-background-color: #4CAF50;
    --button-hover-color: #45a049;
    --light-background-color: #CEE0DC;
    --dark-background-two: #042500;
    --dark-background-color: #293528;
}
ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}













html {
    scroll-behavior: smooth;
}




p, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
/* Header Styles */
.hero {
    position: relative;
    background-color: #3333334c;
    width: 100%;
    z-index: 10;
    padding-bottom: 50px;
}
.header {
    width: 100%;
    height: 100px;
    position: absolute;
    border-bottom: 1px solid rgb(255, 255, 255);
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 100px;
    padding-bottom: 20px;
}
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #575757c0;
}
.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 8;
    object-fit: cover;
}
.logo {
    max-width: 175px;
    object-fit: contain;
    opacity: 10;
}
.benefit-headline-header {
    display: flex;
    gap: 20px;
}
.benefit-container {
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    gap: 10px;
    max-width: 170px;
}
.benefit-icon {
    max-width: 40px;
}
.call-now {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: end;
    justify-content: center;
    text-align: left;
    transition: .3s all ease;
    padding-bottom: 10px;
}
.call-now a {
    text-decoration-color: #ffffff;
    color: white;
    font-weight: 700;
    transition: .3s all ease;
    font-size: 14px;
    text-decoration: underline;
}
.call-now a:hover {
    text-decoration-color: #ffffff;
    opacity: .8;
    transition: .3s all ease;
}
.call-now p {
    margin-bottom: 0;
    font-size: 14px;
    
}
.hero-content-container {
    display: flex;
    padding-top: 170px;
    max-width: 1175px;
    margin: 0 auto;
    color: white;

}
.hero-column-1 {
    display: flex;
    flex-direction: column;
    z-index: 10;
    width: 50%;
    padding-right: 50px;
    
}
.hero-column-2 {
    display: flex;
    flex-direction: column;
    z-index: 10;
    width: 50%;
    padding-top: 75px;
    padding-left: 100px;
    
}
.hero-column-1-p {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: capitalize;
}
.number-hero {
    width: 85%;
    background-color: white;
    color: var(--header-background-color);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 5px;
    border-radius: 10px;
    flex-direction: column;
    position: relative;
    z-index: 11;
    margin-bottom: 10px;
}
.number-hero::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 30px;
}
.aum-hero {
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 10px;
    
}
#rangevalue {
    position: relative;
    z-index: 20;;
}
.hero-form {
    width: 100%;
    min-height: 000px;
    background-color: white;
    border-radius: 15px;
    position: relative;
    z-index: 11;
}
.hero-form-label-blue {
    position: absolute;
    width: 130px;
    height: 150px;
    background-color: var(--header-background-color);
    top: 30px;
    left: -130px;
    z-index: 11;
    border-radius: 12px 0 0 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.493);
    border-top: 1px solid rgba(0, 0, 0, 0.493);
    border-bottom: 1px solid rgba(0, 0, 0, 0.493);
    box-shadow: -2px 1px 6px rgba(0, 0, 0, 0.425);;
    padding: 18px;
    line-height: 22px;
    color: white;
    display: flex;
    align-items: center;
    justify-content:   center ;
    font-style: italic;
}
.hero-form-label-red {
    position: absolute;
    width: 125px;
    height: 100px;
    background-color: var(--secondary-outline-color);
    top: 0px;
    right: 20px;
    z-index: 12;
    border-radius: 0 0 10px 10px;
    padding: 15px 16px 5px 16px;
    display: flex;
    text-align: center;
    
    justify-content: center ;
}
.hero-benefit-list-item {
    position: relative;
    padding: 0;
    margin: 0;
    line-height: 20px;
    font-weight: 500;
    
}
.hero-benefit-list-item::before {
    content:"";
    background-image: url(./images/icons8-checkmark-96\ \(2\).png);
    color: white;
    position: absolute;
    left: -40px;
    top: -5px;
   
    
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 11;

}
.hero-benefit-list-container {

    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    margin-bottom: 40px;
}
.how-we-helped p {
    margin: 40px 0 30px 0;
    font-weight: 500;
}
.hero-disclaimer {
    font-size: 14px;
    font-style: italic;
    margin-top: 40px;
}
.submit-button {
    background-color: var(--header-background-color);
    border: none;
    color: white;
    box-shadow: none;
    padding: 20px 30px;
    margin: 0 auto;
    font-size: 13px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 3px;
}
.submit-button:hover {
    opacity: .9;
}
.form-field-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    width: 100%;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}
.form-instruction {
    position: relative;
    z-index: 11;
    color: var(--dark-background-two);
    width: 65%;
    
    display: flex;
    flex-direction: column;
    height: 100px;
    align-items: end;
    justify-content: end;
    padding-left: 30px;
    padding-top: 10px;
    font-size: 22px;
    font-weight: 700;
}
.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
    width: 48%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 25px;
    background-color:#46773f1e;;
    color: var(--dark-background-two);
  
}
input::placeholder {
    color: rgb(121, 121, 121);
}
.hero-form input[type="range"] {
    width: 100%;
}
.investible {
    color: var(--dark-background-two);
    text-align: left;
    width: 100%;
}
.slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    margin-top: 50px;
}

.tooltip {
    position: absolute;
    top: -40px; /* Adjust to place above the slider */
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: left 0.1s ease-in-out;
}

/* Tooltip arrow */
.tooltip::after {
    content: '';
    position: absolute;
    bottom: -14px; /* Moves the arrow closer to the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; /* Creates the arrow */
}

/* Style the entire range input */
input[type="range"] {
    -webkit-appearance: none; /* Remove default styling for WebKit browsers */
    width: 100%;
    height: 8px;
    
    background: #d3d3d3; /* Default track color */
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

input[type="range"]:hover {
    opacity: 1; /* Make slider opaque on hover */
}

/* Style the slider thumb (the button) for WebKit browsers */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 30px;
    background: #ffffff; /* Thumb color */
    cursor: pointer;
    border-radius: 5px; /* Round thumb */
    border: 3px solid var(--header-background-color); /* Add border around the thumb */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    transition: background-color 0.3s ease;
    margin-top: -10px;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background-color: #c9c9c9; /* Change color on hover */
}

/* Style the slider thumb (the button) for Firefox */
input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #7F3286;
    cursor: pointer;
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    background-color: #b26cd6;
}

/* Style the slider track (the line the thumb moves along) for WebKit browsers */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #acacac; /* Track color */
    border-radius: 5px;
    border: none;
}

/* Style the slider track (the line the thumb moves along) for Firefox */
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #c5d8a7;
    border-radius: 5px;
    border: none;
}

/* Style the slider track (the line the thumb moves along) for Internet Explorer */
input[type="range"]::-ms-track {
    width: 100%;
    height: 8px;
    background: transparent;
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
    border-radius: 5px;
    background: #c5d8a7; /* Track color */
}

/* Thumb styling for IE */
input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #7F3286;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #98BA50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Track styling for IE */
input[type="range"]::-ms-fill-lower {
    background: #c9c9c9;
    border-radius: 5px;
}

input[type="range"]::-ms-fill-upper {
    background: #cecece;
    border-radius: 5px;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.range-label {
    flex: 1;
    width: 100%;
    justify-content: space-between;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.fine-print {
    font-size: 12px;
    text-align: center;
    color: rgb(78, 78, 78);
    padding: 20px;
    margin-top: 10px;
}
.mobile-header-logo {
    display: none;
}
.instance2 {display: none;}
.pillars-main-container {
    background-color: #ffffff;
    padding: 100px 20px 60px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    
    padding-top: 40px;
}
.partner-logo {
    max-width: 120px;
}
.column-container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.financial-planning-list {
    display: flex;
    gap: 30px;
}
.financial-planning-step {
width: 100%;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.096);
position: relative;
border: 1px solid var(--dark-background-two);
z-index: 10;

}

.column-title {
    font-size: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
    font-weight: 700;
    position: relative;
    color: #0D7000;
    text-transform: capitalize;
    font-family: Montserrat, sans-serif;

}
.column-title::after {
    position: absolute;
    width: 10%;
    height: 2px;
    background-color: #0D7000;
    content: "";
    bottom: 0;
    left: 0;
    color: #470011;
}
input[type="text"] {
    font-family: 'Montserrat, sans-serif';
    font-size: 20px;
    color: var(--dark-background-two);
}
.step-title {
    background-color: #0D7000;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    color: rgb(255, 255, 255);
    border-radius: 10px 10px 0 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    border-top: 2px solid white;
    border-right: 3px solid white;
    border-left: 2px solid white;
}
input[type='text'] {
    font-family: Montserrat, sans-serif;
}

.step-description {
    padding: 20px 15px 0 15px;
    background-color: white;
    font-size: 17px;
    font-weight: 300;
    color: black;
    font-family: Roboto, sans-serif;
}
.step-cta {
    padding: 15px 15px 35px 15px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    background-color: white;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    text-decoration: underline;
    color:#000000;
    font-family: Roboto, sans-serif;
    
}
.button-container {
    display: flex;
    gap: 20px;
}
.step-cta:hover{
    text-decoration: none;
}
#first-step {
    background-color: #575757;
    color: white;
}
.partner-text {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.column-title::before {
    content: "";
    background-image: url(./images/icons8-quote-50\ \(2\).png);
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position:center ;
    position: absolute;
    margin: 0 auto;
    top:-70px;
    left: 0; 
}
.logo-container-top-line {
    display: none;
}
.logo-container-bottom-line {
    display: none;
}
.about-us-main-container {
    width: 100%;
    
    background-color: #F6F6F6;
    position: relative;
    z-index: 1;
   
}
.background-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #252c26;
    z-index: 1;

}
.market-update-container {
    z-index: 2;
}
.about-us-column-group-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.margin-auto {
    margin: 0 auto;
}
.about-us-cl1 {
    width: 620px;
}
.cl1-description {
    margin-top: 30px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 16px;
    padding-right: 20px;
    margin-bottom: 50px;
}
.cl1-sub-description {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    color:#0D7000
}
.about-us-cl2 {
    width: 300px;
    display: flex;
    flex-direction: column;
    
    position: relative;
    z-index: auto;
}
.market-update-disclaimer {
    font-size: 14px;
}
.orange-button {
    padding: 10px 40px;
    background-color: #0D7000;
    text-decoration: none;
    color: white;
    font-family: montserrat, sans-serif;
    border-radius: 10px;
    
}
.grey-button {
    padding: 10px 40px;
    
    text-decoration: none;
    color: rgb(58, 58, 58);
    font-family: montserrat, sans-serif;
    border-radius: 10px;
    border: 1px solid black;
    
}
.picture-container-main-mobile {
    display: none;
}
.about-us-sub-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 100px;
    padding-top: 100px;
}
.market-update-section {
    width: 100%;
    position: relative;
    padding: 100px 0;
    background-color: #F6F6F6;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23F6F6F6' stroke-width='0.2' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cuse fill='%23f4f4f4' href='%23s' y='2'/%3E%3Cuse fill='%23f4f4f4' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23f1f1f1' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23f1f1f1' href='%23s'/%3E%3Cuse fill='%23efefef' href='%23s' x='2'/%3E%3Cuse fill='%23efefef' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%23ececec'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%23ececec'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%23e9e9e9'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%23F6F6F6'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23e7e7e7'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%232D522F'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%232D522F'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(22.95) translate(-956.43 -717.32)'%3E%3Cg fill='%232D522F'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}






/* Controls positioned over the video */
.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1; /* Make sure it's visible when paused */
}

/* Hide button when video is playing */
.video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Make sure controls stay visible when hovering over them */ 
.market-update-content:hover .video-controls {
    opacity: 1 !important;
}
/* Play/Pause Button */
#playPauseBtn {
    background: none;
    border: solid 1px rgb(255, 255, 255);
    cursor: pointer;
    width: 70px;
    height: 56px;
    border-radius: 5px;
    padding: 0;
    background-color: #0D7000;
    padding: 5px 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgb(0, 0, 0);
}

/* Play/Pause Icon */
#playPauseIcon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bar */
/* Style the progress bar background */
#progressBar {
    width: 100%;
    height: 5px;
    background-color: rgba(0, 110, 0, 0.247); /* Light transparent background */
    border-radius: 0 0 5px 5px;
    appearance: none;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    padding: 0;
    margin: 0;
   
    left: 50%;
    transform: translateX(-50%);
}

/* Style the filled progress (for WebKit browsers) */
#progressBar::-webkit-progress-bar {
    background-color: rgba(255, 255, 255, 0); /* Background color */
}

#progressBar::-webkit-progress-value {
    background-color: #2e8d21; /* Change this to any color you want */
    border-top: 1px solid black;
    border-right:1px solid  white;
}

/* Firefox specific styling */
#progressBar::-moz-progress-bar {
    background-color: #ffcc00; /* Same color as WebKit */
}


























.market-update-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.market-update-title-p {
    font-size: 50px;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    text-align: center;
    color: white;
    
}
.market-update-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.568);
    position: relative;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.452);
    border-radius: 10px;
}
.market-update-video {max-width: 100%;border-radius: 10px;}
/* Hide default Safari controls */
.market-update-video::-webkit-media-controls {
    display: none !important;
}

#timer {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2.5em;
    color: #ffffff;
    
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    
  
    margin-top: 0;
    margin-bottom: 50px;;
    gap: 10px
    
  }
  .timer-section {
    display: flex;
    justify-content: center;
    gap: 1em; /* space between each time segment */
    margin: 1em 0;
    margin-top: 0;
    margin-bottom: 0;
  
  }
  
  .time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
   
    position: relative;
    padding: 10px;
  
    border-radius: 10px;
    color: white;
  }
  .time-segment::after {
    content: ':';
    position: absolute;
    right: -27px;
    color: rgb(255, 255, 255);top: 20%;
    font-weight: 700;
    font-family: Roboto, sans-serif;
    font-size: 40px;
    margin-bottom: auto;
    margin-top: auto;
  }
 
  .market-update-email {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    width: 600px;
   position: relative;
   z-index: 10;
   align-items: center;
   justify-content: center;
    padding: 40px 10px;
    border: 3px solid var(--dark-background-two);
    background-color: white;
    border-radius: 10px;;
  }
#urmom::after {
    display: none;
    
}
  .market-update-email p {
    font-family: Roboto, sans-serif;font-size: min(30px, 6vw);
    text-transform: capitalize;
    text-align: center;

  }
  .email-input {
    padding: 10px 20px;
    margin: 20px 0;
  }
  .email-submit {
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    width: 200px;
    background-color: #0D7000;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: Montserrat, sans-serif;
    text-transform: capitalize;
  }
  .email-input::placeholder {
    font-family: Montserrat, sans-serif;
    text-align: center;
    font-size: min(16px, 4vw);
    font-weight: 600;
    text-transform: uppercase;
  }
  .time-until {
    font-size: min(30px, 5vw);
    margin-top: 50px;
    font-weight: 600;
    
   
    border-radius: 10px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    color: white;
  }
  .time-number {
    font-size: min(2.5em, 8vw); /* adjust size as needed */
    font-weight: bold;
    color: white
  }
  
  .time-label {
    font-size: min(1em, 4vw); /* label text smaller than the number */
    color: #ffffff;
    margin-top: 0.2em; /* spacing between number and label */
    
  }
  
  /* Optional: style individual parts if you split the timer up */
  .time-part {
    display: block;
    margin: 5px 0;
  }
  .step-number {
    color:#ffffff;
    
    font-weight: 800;
    font-size: 25px;
 
  }
.picture-container-main {
    width: 100%;
    
    
    position: relative;
    background-color: #ffffff;
    
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 2px #575757;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    
}
.picture-container {
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}
.founder-name {
    font-family: montserrat, sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.founder-title {
    font-family: montserrat, sans-serif;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.picture-container-main::before {
    position: absolute;
    content: '';
    height: 90%;
    border-radius: 10px;
    width: 30px;
    right: -10px;
    background-color: #042500;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    z-index: -1;
    pointer-events: none;
    
}
.cl2-big-picture {
    border-radius: 100%;
}
.cl1-title {
    color: #434343;
    font-size: 40px;
    font-family: montserrat, sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}
.book-cover-img {
    width: 800px;
    margin-right: -100px;
}
.book-offer-section {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding-top: 00px;
    max-width: 1300px;
    gap: 50px;
    
}
.book-offer-1 {
   
    font-size: 30px;
    font-weight: 700;
    
}
.book-offer-2 {
    
}
.book {
    display: flex;
    background-color: var(--dark-background-color);
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
    font-family: Montserrat, sans-serif;
    flex-direction: column;
    font-size: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #042500;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(216,956,481)'%3E%3Cstop offset='0' stop-color='%23042500'/%3E%3Cstop offset='1' stop-color='%23042500'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='2000' height='1666.7' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.04'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.dont-fear-p {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;
}
.live-it-p {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    
}
.book-details-sub-headline {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.book-details-main-headline {
    font-size: 40px;
    font-weight: 700;
}
.book-details-description {
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: Roboto, sans-serif;
}
#we-cover {
    font-size: 20px;
    font-weight: 600;
   
}
.download-now-button {
    margin-top: 20px;
}
.download-now-button a {
    font-size: 20px;
    border: 1px solid #f6f6f6;
    padding: 10px 20px;
    color: #f6f6f6;
    position: relative;
    background: rgb(41,53,40);
    background: linear-gradient(189deg, rgb(54 99 51) 0%, rgb(10 131 0) 3%, rgb(16 89 16) 97%, rgb(24 103 16) 100%);
   font-weight: 500;
   padding-right: 50px;
}
.download-now-button a::after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 23px;
    height: 23px;
    background-image: url(images/icons8-download-48.png);
    background-size: contain;
    content: '';
    z-index: 100;
    background-position: center;
    margin-top: auto;
    margin-bottom: auto;
}
.book-detail-item {
    font-size: 16px;
    padding-left: 30px;
    line-height: 30px;
    position: relative;
}
.book-detail-item::before {
    content: '⦿';position: absolute;
    left: 0;
}
.book-detail-item::before {
    font-size: 18px;
}
.book-details-container {
    width: 400px;
    
    
}
.video-wraooer {
    position: relative;
}
.book-video {
    display: flex;
    width: 100%;
   
}


.c-video {
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}
.controls {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.8);
    z-index: 10;
    height: 40px;
    
    color: white;
    transform: translateY(100%) translateY(-4px);
    transition: all .2s;
}
.c-video:hover .controls {
    transform: translateY(0);
}
.buttons {
    padding: 10px;
}
.buttons button.play:before {
content: '\f144';
}
.buttons button.pause:before {
    content: '\f28b';
}
.buttons button {
    background: none;
    border: 0;
    color: 0;
    cursor: pointer;
   
}
.buttons button:before {
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    width: 30px;
    height: 30px;
    display: inline-block;
    font-size: 28px;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
.orange-bar {
    height: 4px;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
}
.orange-juice {
    height: 4px;
    width: 100px;
    background-color: grey;
}


.customer-service-main {
    background-color: #ffffff;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.customer-service-container {
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.customer-service-column-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.customer-service-column-2 {
    width: 50%;
}
.customer-service-benefits-container {
    display: flex;
    gap: 30px;
}
.cs-video-container {
   display: flex;;
   position: relative;
}
.customer-service-video {
    max-width: 100%;
    border-radius: 10px;;
    z-index: 10;
}
#customer-service-headline {
    color: #0D7000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: Montserrat, sans-serif;
    padding-right: 15%;
}
.benefit-item {
    position: relative;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
}
#pic-c-1 {
    border-radius: 10px 10px 0 0;
    
}
#pic-c-2 {
    border-radius: 0 0 10px 10px;
  
}
.benefit-item::before {
    content: '✓';
    width: 30px;
    height: 30px;
    font-weight: 900;
    display: absolute;
    left: -40px;
    padding-right: 10px;
    color:#0D7000;
    z-index: 9;
}
.cs-video-container::before {
    content: '';
    height: 30px;
    width: 90%;
    color: #0D7000;
    background-color: #0D7000;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;;
}
.cs-cta-container {
    margin-top: 50px;
    display: flex;
}
.swf-button {
    background-color: #575757;
    border-radius: 15px;
    width: 50%;
    padding: 10px 0px;
    color: white;
    text-decoration: none;
    margin-right: 20px;
    width: 200px;
    display: block;
    text-align: center;
}
.learn-more-button {
    display: block;
    background-color: #0D7000;
    border-radius: 15px;
    padding: 10px 0px;
    color: white;
    text-decoration: none;
    width: 200px;
   text-align: center;
}
.customer-service-container-top-line {
width: 60%;
background-color: #545454;
position: absolute;
top: 0;
right: 0;
z-index: 20;
height: 2px;
}
.market-update-disclaimer {
    font-size: 14px;
}
.customer-service-container-bottom-line {
    width: 60%;
    background-color: #545454;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 20;
    height: 2px;
}
.cs-video-mobile {
    display: none;
}
.cs-cta-container-mobile {
    display: none;
}
.market-update-disclaimer {
    padding-top: 20px;
    font-size: 12px !important;
    font-family: Montserrat, sans-serif;
    padding: 5px;
    margin-top: 20px;
    color: black;
}
.cs-video-container {
    display: flex;
    position: relative;
    justify-content: center;
}

/* Video */
.cs-video,
.cs-video-mobile {
    max-width: 100%;
    border-radius: 10px;
    z-index: 10;
    position: relative;
    height: 100%;
}
.cs-video {
    border: 2px solid rgb(192, 192, 192);
}
/* Custom Video Controls */
.cs-video-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 1;
    z-index: 11;
}

/* Hide controls when video is playing */
.cs-video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Play/Pause Button */
.cs-video-controls button {
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    padding: 0;
}

/* Play/Pause Icon */
.cs-video-controls button img {
    width: 100%;
    height: 100%;
}

/* Progress Bar */
.cs-video-container progress {
    width: 99%;
    height: 5px;
    background-color: rgba(17, 75, 0, 0.253);
    border-radius: 0 0 5px 5px;
    appearance: none;
    overflow: hidden;
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Progress Bar Styling */
.cs-video-container progress::-webkit-progress-bar {
    background-color: rgb(133, 133, 133);
}

.cs-video-container progress::-webkit-progress-value {
    background-color: #ffffff;
    border-top: 1px solid rgba(9, 80, 0, 0.973);
     border-right:1px solid  rgba(9, 80, 0, 0.973);
     border-bottom: 1px solid  rgba(9, 80, 0, 0.973);
    border-radius: 0 0 5px 5px;
}

.cs-video-container progress::-moz-progress-bar {
    background-color: #ffffff;
    border-top: 1px solid var(--header-background-color);
    border-bottom: 1px solid var(--header-background-color);
    border-radius: 0 0 5px 5px;
}

#csMobilePlayPauseBtn {
    
        background: none;
        border: solid 1px rgb(255, 255, 255);
        cursor: pointer;
        width: 70px;
        height: 56px;
        border-radius: 5px;
        padding: 0;
        background-color: #0D7000;
        padding: 5px 10px;
        margin-bottom: 10px;
        box-shadow: 0 0 15px rgb(156, 156, 156);
    
}
#csPlayPauseBtn {
    
    background: none;
    border: solid 1px rgb(0, 0, 0);
    cursor: pointer;
    width: 70px;
    height: 56px;
    border-radius: 5px;
    padding: 0;
    background-color: var(--dark-background-two);
    padding: 5px 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgb(255, 255, 255);

}

.market-strategy-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 100px 10px;
    background: rgb(255,255,255);
    background: linear-gradient(126deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 49%, rgba(244,244,244,1) 100%);
    background-color: #F6F6F6;

}
.market-strategy-copy {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 75px;
}
.market-strategy-container {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.market-strategy-pillar-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
}
.strategy-step-container {
    width: 50%;
    height: 200px;
    transition: .3s ease all;
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.strategy-step-container:hover {
    translate: 0 -1px;
    transition: .3s ease all;
    cursor: pointer;
}
.strategy-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: white;
}

.step-label {
    height: 100%;
    background-color: var(--header-background-color);
    color: white;
    text-orientation:upright;
    writing-mode: vertical-rl;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
}
.grey-label {
    background-color: #383D3B;
}
.strategy-step-container::after {
    content: '';
    position: absolute;
    transition: .2s ease all;
    
    width: 12px;
    left: 0;
    top: 0;
    height: 3px;
    z-index: 11;
    background-color: #0D7000;
}
.strategy-step-container::before {
    content: '';
    position: absolute;
    transition: .2s ease all;
    
    width: 12px;
    left: 0;
    bottom: 0;
    height: 3px;
    z-index: 11;
    background-color: #0D7000;
}
.strategy-step-container:hover::after {
    width: 100%;
    transition: .2s ease all;
    border-radius: 0 5px 0 0;
}
.strategy-step-container:hover::before {
    width: 100%;
    transition: .2s ease all;
    border-radius: 0 5px 0 0;
}
.odd-label::after {
    background-color: #383D3B;
}
.odd-label::before {
    background-color: #383D3B;
}
.odd-label {
    margin-left: 40px;
}
/*
#step-1::after {
    content: '1';
    font-family: Montserrat, sans-serif;
    left: 5px;
    bottom: 5px;
    color: white;
    position: absolute;
    background-color: #575757;
    padding: 10px;
    border: 1px solid white;
    font-weight: 800;
}
#step-2::after {
    content: '2';
    font-family: Montserrat, sans-serif;
    left: 5px;
    bottom: 5px;
    color: white;
    position: absolute;
    background-color: #575757;
    padding: 10px;
    border: 1px solid white;
    font-weight: 800;
}
#step-3::after {
    content: '3';
    font-family: Montserrat, sans-serif;
    left: 0px;
    bottom: 5px;
    color: white;
    position: absolute;
    background-color: #575757;
    padding: 10px;
    border: 1px solid white;
    font-weight: 600;
}
#step-4::after {
    content: '4';
    font-family: Montserrat, sans-serif;
    left: 5px;
    bottom: 5px;
    color: white;
    position: absolute;
    background-color: #575757;
    padding: 10px;
    border: 1px solid white;
    font-weight: 600;
}*/
.strategy-image {
    position: relative;
    border: 6px solid white;
    padding: 30px;
}
.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px 5px 0 0;
}
.strategy-image img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    height: 100%;
    z-index: 9;
    border-radius: 5px 5px 0 0;
}
.strategy-copy {
    padding: 10px;
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;flex-direction: column;
  background-color: white;

}
.strategy-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
    
}
.strategy-description {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    padding-top: 10px;  
    line-height: 18px;
}
.market-strategy-cta {
    margin-top: 100px;
   
}
.strategy-learn-more {
    padding: 10px;
    font-family: Montserrat, sans-serif;
    letter-spacing: -1px;
    font-weight: 700;
    color:#0D7000;
    font-size: 16px;
    
    padding-right:75px;
    position: relative;
    margin-top: 20px;
    flex-shrink: 1;
    cursor: pointer;
    transition: ease all .1s;
    
    
}
.strategy-learn-more:hover {
    scale: 1.1;
    translate: 5px 0;
    transition: ease all .1s;
}

.strategy-learn-more::after {
    content:'';
    width: 35px;
    height: 35px;
    position: absolute;
    right: 20px;
    background-image: url(./images/right-arrow-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
}
.market-strategy-title {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0D7000
}
.market-strategy-description {
    font-family: Roboto, sans-serif;
    font-size: 30px;
    font-weight: 500;
}
.market-strategy-cta-button {
    padding: 15px 40px;
    background-color:#0D7000;
    font-family: Montserrat, sans-serif;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    
}
.flex-reverse {
    flex-direction: row-reverse;
}
.strategy-details-button {
    align-self: baseline;
    margin-top: 15px;
    background-color: var(--header-background-color);
    color: white;
    text-decoration: none;
    padding: 8px 30px;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.grey-buttons {
    background-color: #383D3B;
}
/* Hide modals by default */
.step-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    display: none; /* Hide by default */
    max-height: 100vh; /* Limits height so scrolling happens inside modal */
    overflow-y: auto; /* Enables scrolling if content exceeds max height */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
body.modal-open {
    overflow: hidden;
}
.step-modal::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.step-modal {
    scrollbar-width: none;
}
/* Show modal when active */
.step-modal.active {
    display: flex;
}

/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Modal content */
.modal-content {
    background: white;
    
    width: 90%;
    max-width: 600px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    z-index: 19;
}
.modal-content-sub-container {
    position: relative;
    z-index: 16;
    padding: 50px 15px;
}
.modal-overlay {
    position: absolute;
    width: 100%;height: 100%;
    background-color: rgba(63, 63, 63, 0.877);
    z-index: 10;
}
.modal-img {
    width: 100%;
    height: 100%;
    position: absolute;

}
.relative-position {
    position: relative;
    width: 100%;
    height: 100%;
}
.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sma-img {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.modal-title {
    
}
.modal-content p {
    font-family: Roboto, sans-serif;
}
.go-back {
    background-color: white;
    font-family: Montserrat, sans-serif;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 20px;
    cursor:pointer;
}
#marketUpdateForm {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.email-submit {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    border: none;
    font-size: min(18px, 4.5vw);
    cursor: pointer;
}
.email-submit:hover {
    background-color: #094d00;
}
.recap-section {
    width: 100%;
    background-color: #042500;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(216,956,481)'%3E%3Cstop offset='0' stop-color='%23042500'/%3E%3Cstop offset='1' stop-color='%23042500'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='2000' height='1666.7' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.04'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
color: white;
padding-bottom: 50px;
}
.recap-container {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 50px 10px;
}
.recap-title {
    font-size: 50px;
    margin-bottom: 20px;
    font-family:Montserrat, sans-serif;
    line-height: 48px;
    font-weight: 600;
}
.recap-description {
    font-family: Roboto, sans-serif;
    
}
#desktop-hero-image {
    object-position: 10% 30%;
}
.list-title {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 22px;
  
}
#mobile-hero-img {display: none;}
.list-benefit {
    position: relative;
    font-family: Roboto, sans-serif;
    padding-left: 30px;
    margin-bottom: 35px;
    line-height: 23px;
}
.list-benefit::before {
    content: '✓';
    font-size: 20px;
    position: absolute;
    left: 0;
}
b {}
#content-1, #content-2, #content-3, #content-4 {
    text-align: left;
    background-size: cover;
    height: 100%;
    width: 100%;
    border-radius: 0;
    color: white;
}
/* Scroll wheel container */
/* Scroll wheel container */
/* Full-height scroll wheel */
.scroll-wheel {
    position: fixed;
    right: 0px;
    top: 0; /* Align to the very top */
    width: 5px;
    height: 100vh; /* Full height of the viewport */
    background: rgba(0, 54, 7, 0);
    border-radius: 20px;
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    touch-action: none; /* Prevents default browser behavior */
    flex-direction: column;
    padding: 10px 0;
}

/* Inner scroll handle */
.scroll-handle {
    width: 5px;
    right: 1px;
    height: 180px; /* Handle size */
    background: rgb(92, 92, 92) !important;
    border: 1px solid rgba(255, 255, 255, 0.37);
    border-radius: 5px;
    position: absolute;
    top: 0;
    transition: none;
}



/* Hide scrollbar on all elements (desktop & mobile) */
body, html {
    overflow-y: scroll; /* Keep scrolling enabled */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
}

/* Hide scrollbar for Webkit-based browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar {
    display: none;
}


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width:1000px) {
    .hero-content-container {
        flex-direction: column;
    }
    .cs-video-controls {
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
        opacity: 1;
    }
    .hero-column-1 {
        width: 100%;
    }
    .about-us-column-group-1 {
        flex-direction: column;
    }
    .cs-benefits-c2 {
        display: none;
    }
    .about-us-cl1 {
        width: 100%;
        margin-bottom: 50px;
        padding: 10px;
    }
    .about-us-cl2 {
        width: 100%;
        display: none;
    }
    .hero-column-2 {
        width: 85%;
        padding-left: 0;
        margin: 0 auto;
    }
    .customer-service-video {
        min-height: 500px;
    }
    .cs-video-mobile {
        max-width: 100%;
        border-radius: 10px;;
        z-index: 10;
        display: block;
    }
    #customer-service-headline {
        padding-right: 0;
        text-align: center;
    }
    .cs-cta-container-mobile {
        display: flex;
        margin-top: 30px;
        width: 90%;
        font-family: Montserrat, sans-serif;
    }
    .customer-service-container {
        flex-direction: column;
        gap: 40px;
    }
    .customer-service-benefits-container {
        flex-direction: column;
        gap: 0;
       
    }
    .book-offer-section {
        flex-direction: column;
        
    }
    .book-offer-1 {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    #pic-c-2 {
        border-radius: 0 0 10px 10px;
        
        padding-bottom: 30px;
    }
    .customer-service-column-1 {
        width: 100%;
    }
    .cs-benefits-c1 {
        padding-left: 15%;
    }
    .cs-benefits-c2 {
        padding-left: 15%;
    }
    .cs-cta-container {
        display: none;
    }
    .swf-button {
width: 50%;
    }
    .learn-more-button {
        width: 50%;
    }
    .customer-service-container-top-line {
        width: 95%;
        left: 0;
        right: 0;
        display: none;
        margin: 0 auto;
    }
    .about-us-column-group-1
    .customer-service-container-bottom-line {
        width: 100%;
        left: 0;
        display: none;
        right: 0;
        bottom: -20px;
        margin: 0 auto;
    }
    .customer-service-column-2 {
        width: 85%;
    }
    .picture-container-main {
        width: 80%;
        padding: 0;
        margin: 0 auto;
    }
    .number-hero {
        font-size: min(60px, 8vw);
        width: 70%;
        margin: 0 auto;
    }
    .header {
        flex-direction: column;
       
    }
    .call-now {
        display: none;
    }
    .logo {display: none;}
    .img-overlay {
        object-position: 75% 10%;
    }
    .hero {
        position: relative;
        height: auto;
    }
    .number-hero, .hero-disclaimer {
        display: none;
    }
    .header {
        height: auto;
        background-color: #b66b7c00;
        gap: 0;
        padding-bottom: 0;
        
    }
    .mobile-header-logo {
        max-width: 150px;
       

        margin: 15px auto 10px auto;
        display: flex;
    }
    .benefit-container {
        flex-direction: column;
        font-size: min(3vw, 10px);
        text-align: center;
        padding: 10px 18px 15px 18px;
        flex:1;
        box-sizing:border-box;
        gap: 5px;
        line-height: 15px;
        
    }
    .benefit-headline-header {
        width: 100%;
        background-color: #383d3b52;
        gap: 0;
        justify-content: space-evenly;
    }
    .benefit-icon {max-width: 35px;}
    .benefit-container:nth-of-type(2) {
        border-left: 1px solid #7e7e7e;
        border-right: 1px solid #7e7e7e;
        flex: 1;
    }
    .hero-column-1 {
        margin-top: 50px;
        padding: 0 20px 0 20px;

    }
    .hero-column-1-p {
        font-size: min(35px, 8vw);
    }
    .hero-form-label-blue {
        position: relative;
        height: 100%;
        top:auto;
        left: auto;
        right: auto;
        bottom: auto;
        border-radius: 10px 0 0 0;
        font-size: 13px;
        padding-top: 5px;
        padding: 5px;
        padding-bottom: 5px;
        padding-left: 15px;
        box-shadow: none;;
        border-bottom: none;
        border: none;
    }
    .hero-form-label-red {
        position: relative;
        height: auto;
        top:auto;
        left: auto;
        right: auto;
        height: 100%;
        bottom: auto;
        border-radius: 0 10px 0 0;
        padding: 5px 10px 5px 10px;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        border-bottom: none;
        border: none;
    }
    .label-container {
        position: absolute;
        height: 80px;
        top: -75px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .hero-column-2 {
        margin-top: 50px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 50px;
    }
    
    .hero-form input[type="text"], .hero-form input[type="email"], .hero-form input[type="tel"] {
        width: 100%;
    }
    .form-instruction {
       
        width: 100%;
    }
    .instance1 {display: none;}
    .instance2 {display: flex; z-index: 1011; position: relative; }
    .white {color: white;}
    .instance2  {
        
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .number-hero {margin-bottom: 20px;}
  
    .financial-planning-list {
        flex-direction: column;
        width: min(95%, 300px);
    }
    .column-title {
        width: 90%;
        margin: 20px;
        font-weight: 700;
        text-align: center;
    }
    .column-title::after {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 20%;
    }
    .financial-planning-step p {
        text-align: center;
    }
    .step-cta {
        justify-content: center;

    }
    .pillars-main-container {
        padding-top: 140px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 100px;
    }

    .column-title::before {
        top: -80px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }


.book-offer-1 {
    text-align: center;
}
.live-it-p {
    font-size: 45px;
}

}
.cs-video-container progress {
    width: 99%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0 0 5px 5px;
    appearance: none;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media screen and (max-width: 1000px) {
    .picture-container-main-mobile {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
        align-items: center;
        justify-content: center;
    }

    .about-us-column-group-1 {
        gap: 20px;
    }
    .market-strategy-title {
        font-family: Montserrat, sans-serif;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }
    #mobile-hero-img {
        display: flex;
        object-position: 50% 10%;
    }
    .market-strategy-description {
        font-family: Roboto, sans-serif;
        font-size: 33px;
        font-weight: 600;
        text-align: center;
        padding: 0 8vw;
        margin-top: 20px;
    }
    .picture-container-main {
        display: none;
    }
    .book-offer-1 {
        width: 100%;
    }
    .about-us-cl1 {
        margin-bottom: 0;
    }
    .about-us-sub-container {
        padding-bottom: 0;
        padding-top: 0;
    }
    .book-offer-2 {
        width: 100%;
        padding: 10px;
    }
    .book-cover-img {
        width: 100%;
       margin: 0 auto;
    }
    .book-offer-section {
        gap: 30px;
    }
    .book-details-container {
        width: 100%;
        height: auto;
    }
    
    .market-update-section {
        background-attachment: scroll;
    }
    .timer-section {
        min-height: 100px;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
    }
    .time-until {
        font-size: min(30px, 4.8vw);
    }
    .customer-service-container-bottom-line {
        display: none;
    }
    .strategy-step-container {
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        border-radius: 5px;
    }
    .strategy-image img {
        border-radius: 5px 5px 0 0;
    }
    .step-title {
        font-size: 15px;
    }
    .financial-planning-step {
        min-height: 0;
    }
    .strategy-image {
        padding: 15px;
    }
    .strategy-copy {
        align-items: baseline;
    }
    .background-gradient {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #3e4b40;
        z-index: 1;
    }
    .email-input {
        width: auto;
    }
    .market-update-container {
        z-index: 2;
    }
    .time-segment::after {
        top: 15%;
        font-size: min(25px, 6vw);
        right: -25%;
    }
    .cs-video-container {
        background-color: white;
        border-radius: 10px;
        border: 1px solid rgb(216, 216, 216);
        z-index: 2;
    }
    .market-update-email {
        background-color: rgba(255, 255, 255, 0.479);
    }
    .customer-service-video {
        display: none;
    }
    .about-us-main-container {
        padding: 100px 10px;
    }
    .button-container {
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    .orange-button {
        padding: 10px 5px;
        text-align: center;
    }
   
    .logo-container-top-line {
        display: block;
        position: absolute;
        width: 90%;
        background-color: black;
        height: 1px;
        top: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .logo-container-bottom-line {
        display: block;
        position: absolute;
        width: 90%;
        background-color: black;
        height: 1px;
        bottom: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .market-update-email p {
        text-shadow: 0 0 15px white;
        text-align: center;
    }
    .market-update-email {
        margin-top: 100px;
        width: 95%;
        border: 2px solid var(--dark-background-two);
        padding: 20px 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        background-color: white;
    }
    .grey-button {
        padding: 10px 5px;
        text-align: center;
    }
    #timer {
        margin-bottom: 0;
        padding: 10px 0;
    }
    #customer-service-headline {
        font-size: min(36px, 8vw);
        padding: 0 20px;
    }
    .benefit-item {
        font-size: 18px;
    }
    .logo-container {
        flex-wrap: wrap;
        flex-direction: column;
        position: relative;
        gap: 40px;
        margin-top: 100px;
        margin-bottom: 0px;
        padding: 50px 5px;
    }
    .partner-logo {
        width: 50%;
        max-width: 100%;
    }
    .cs-video-container::before {
        z-index: 1;
    }
    .partner-text {
        font-size: 20px;
    }
    #timer {
        max-width: 100%;
    }
    #step-1::after, #step-2::after, #step-3::after, #step-4::after {
        width: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .market-strategy-pillar-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
    .strategy-step-container {
        margin: 0;
        width: 95%;
        height: 250px;
        flex-grow: 1;
        flex-shrink: 1;
        align-items: stretch;
    }
    .strategy-image {flex-grow: 1;}
    .market-strategy-section {
        padding: 100px 0;
    }

    /* Desktop Video: Show only on screens wider than 768px */
    .cs-desktop-video {
        display: flex;
    }
    .cs-mobile-video {
        display: none;
    }
    .strategy-details-button {
        padding: 8px 30px;
    }
}

/* Mobile Video: Show only on screens smaller than 768px */
@media screen and (max-width: 768px) {
    .cs-desktop-video {
        display: none;
    }
    .cs-mobile-video {
        display: flex;
        border: 1px solid rgb(160, 160, 160);
    }
    .form-instruction {
        height: 120px;
    }
}

/* Ensure video controls hide/show properly */
.cs-video-container:hover .cs-video-controls,
.cs-video-controls:hover {
    opacity: 1 !important;
    pointer-events: all;
}

/* Hide controls when not hovered and video is playing */
.cs-video-controls.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
