/* HERO BONUS */

.company-heading h1 {
	color: #fff !important;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
}
.bonus-description h2 {
	font-size:40px;
	font-weight:800;
	color:#fff !important;
}

.bonus-disclaimer p {
    color: white;
    font-size: 12px;
    font-weight: 800;
}

.bonus-disclamer a {
	text-decoration: underline;
}

.bonus-btn-wrapper {
	margin-top:30px;
}

.bonus-btn {
    text-align: center;
    font-size: 14px !important;
    padding: 8px 18px 8px 18px !important;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
}


/* PROS AND CONS */
.pro-con-row {
	width: 100%;
	display: flex;
}

.pro-con-col {
	width:50%;
}

.pro-con-col ul {
    list-style: none; /* Removes bullets */
    padding: 0; /* Removes default left padding */
    margin: 0; /* Removes extra spacing */
}

.pro-con-col ul li {
    margin-bottom: 5px; /* Optional: Adjust spacing between items */
    display: flex;
    align-items: center;
}

.pro-con-col ul li i {
    margin-right: 8px; /* Adds spacing between icon and text */
}

.pro i {
	color:#2FB782;
}
.con i {
	color:#EA1042;
}

/* Quick facts */
.facts-wrapper {
 	display: grid;
 	grid-template-columns: repeat(3, 33.33%);
 	gap: 1rem;
}

.facts-heading {
 	grid-column: 1 / 4;	
}
.facts-heading h2 {
	text-transform:uppercase;
	font-size: 20px;
	font-weight: 900;
	font-style: oblique;
}

.facts-blurb {
	 display: flex;
	 flex-direction: column;
	padding-top: 15px;
    padding-bottom: 15px;

}

.facts-blurb-icon svg{
 	width: 20px;
 	height: 20px;
	fill: #2FB782;
	color: #2FB782;
}

.facts-blurb-title h3 {
	margin-top:5px;
	margin-bottom:0px !important;
	font-size: 15px !important;
    font-weight: 800 !important;
}


.facts-blurb-content a {
	color:black;
}

.facts-blurb-content a:hover {
	color:black;
}

/* Features and payments */

.feature-ul {
	list-style: none;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 30px !important;
}


.features-ul li,
.payments-ul li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-weight: 800;
    font-size: 14px;
}

.features-ul li svg,
.payments-ul li svg {
	width: 14px;
	height: 14px;
	fill: #2FB782;
	color: #2FB782;
}

.feature-desc {
	font-weight:400;
}

.feature-name {
	margin-left:0.5em;
}

/* Divider section bonus */

.small-btn-divider {
	width: 10%;
    height: 5px;
    background-color: #fff;
}

#divider-bonus {
  text-align: center;
}

#divider-bonus .bonus-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Services */
.service-container {
    display: flex;
    justify-content: end; /* Align to the right */
    align-items: stretch; /* Ensure all boxes are the same height */
    max-width: 1200px;
}

.service-box {
    background: #ffffff;
    border-right: 1px solid #e0e0e0; /* Add border to the right */
    padding: 1.6em;
    flex: 1; /* Make all boxes the same width */
    display: flex; /* Flexbox for equal height alignment */
    flex-direction: column; /* Stack content vertically */
    justify-content: flex-start; /* Align content to the top */
    box-sizing: border-box; /* Include padding in height calculation */
}

/* Remove the border from the last box */
.service-box:last-child {
    border-right: none;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    fill: #2FB782;
    color: #2FB782;
}

.service-title {
    font-size: 1.25rem; /* Slightly larger text for the title */
    font-weight: bold; /* Bold font for emphasis */
    margin-bottom: 0.5rem;
    color: #000;
}

.service-description {
    font-size: 1rem;
    color: #000; /* Subtle gray for the description */
    line-height: 1.5;
}





/* Mobile */
@media (max-width: 768px) {
	
	/* Pros and cons */
	.pro-con-row {
		flex-direction: column;
	}
	.pro-con-col {
		width: 100%;
	}
	.pro-con-col:first-child {
		margin-bottom: 2rem;
	}
	
	/* Quick facts */
	.facts-wrapper {
		grid-template-columns: 50% 50%;
	}
	.facts-heading {
		grid-column: 1 / 3;
	}
	
	/* Features */
	.feature-ul li {
        display: flex; /* Use flexbox for layout */
        flex-direction: column; /* Stack main row and description vertically */
        align-items: flex-start; /* Align content to the left */
        margin-bottom: 10px; /* Add spacing between list items */
		gap: 4px;
    }

    .feature-ul li > svg {
        margin-right: 8px; /* Space between icon and text */
    }

    .feature-ul li > div {
        display: flex; /* Align icon and text on the same line */
        align-items: center; /* Vertically center icon and text */
    }

    .feature-ul li .feature-desc {
        font-size: 0.9rem; /* Adjust font size for readability */
        color: #666; /* Subtle color for the description */
    }
	
	/* Services */
	.service-container {
        flex-direction: column; /* Stack boxes vertically */
        align-items: center; /* Center the boxes horizontally */
    }

    .service-box {
        width: 100%; /* Full width on mobile */
        max-width: 100%; /* Ensure no extra width */
        border: none; /* Remove all borders */
        text-align: center; /* Center the content inside the box */
        padding: 1.6em;
    }

    .service-icon {
        margin: 0 auto 1rem; /* Center the icon with spacing below */
    }

    .service-title {
        text-align: center; /* Center the title */
    }

    .service-description {
        text-align: center; /* Center the description */
    }
}


