
section.features .wrap {
    margin-top: 4em;
}

section.features .wrap .feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

section.features .wrap .feature .feature-image {
    width: 50%;
    order: 1;
    border-radius: 10px;
}

section.features .wrap .feature .feature-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

section.features .wrap .feature .feature-content {
    width: 50%;
    padding: 0 5em;
    order: 2;
}

section.features .wrap .feature:nth-of-type(even) .feature-image {
    order: 2;
}

section.features .wrap .feature:nth-of-type(even) .feature-content {
    order: 1;
}

section.features .wrap .feature .feature-content h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-style: normal;
}

section.features .wrap .feature .feature-content h3 span {
    font-weight: 500;
    line-height: 28px;
    color: #32b4a6;
}

section.features .wrap .feature .feature-content h3 img {
    margin-right: 0.5em;
}

section.features .wrap .feature .feature-content p {
    color: #292929;
    margin-top: 1em;
    line-height: 24px;
}

section.features .feature-wearing {
    margin-top: 4em;
    display: flex;
    flex-direction: column;
}

section.features .feature-wearing .feature-content {
    padding: 0px calc((100% - 600px)/ 2);
}

section.features .feature-wearing .feature-content h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-style: normal;
}

section.features .feature-wearing .feature-content h3 span {
    font-weight: 500;
    line-height: 28px;
    color: #32b4a6;
}

section.features .feature-wearing .feature-content h3 img {
    margin-right: 0.5em;
}

section.features .feature-wearing .feature-content p {
    color: #292929;
    margin-top: 1em;
    line-height: 24px;
}

section.features .feature-wearing .feature-image-wrapper {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

section.features .feature-wearing .feature-image-wrapper .feature-image {
    width: 48%;
}

section.box {
    padding: 50px calc((100% - 1000px)/ 2);
    background-color: #f8f8f8;
}

section.box .wrap {
    margin-top: 4em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

section.box .wrap article {
    width: 48%;
}

section.box .wrap article h2 {
    margin-bottom: 0.5em;
}

section.box .wrap ul {
    padding-left: 28px;
    margin-bottom: 2em;
}

section.box .wrap ul li {
    color: #292929;
    padding: 0.5em 0em;
    position: relative;
}

section.box .wrap ul li:before {
    content: '';
    background-image: url(/wp-content/themes/angelsense/images/check.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -28px;
}

section.box div.action {
    display: block;
}

section.testimonials {
    text-align: center;
}

section.testimonials .wrap {
    margin-top: 4em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

section.testimonials .wrap article {
    width: 95% !important;
    min-height: 320px;
    padding: 1em 3em;
    background-color: #32b4a6;
    color: white;
    border-radius: 10px;
    text-align: center;
}

section.testimonials .wrap article p {
    font-style: italic;
    position: relative;
}

section.testimonials .wrap article p:before {
    content: "";
    margin: 0 auto;
    background-image: url(/wp-content/themes/angelsense/images/blog/quote-top.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 55px;
    height: 55px;
    display: block;
    opacity: 0.5;
}

section.testimonials .wrap article .name {
    display: block;
    margin-top: 1em;
}

section.faq {
    background-color: #f8f8f8;
}

.faq > div {
    margin-top: 2em;
}

.tab_link {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    color: #292929;
    padding: 0.9em 3em 0.9em 0.5em;
    border-bottom: 1px solid #e6e6e6;
    transition: all 0.3s;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    background-color: #f8f8f8;
    transition: all 0.3s;
}

.tab_link.active {
    background-color: #49C9BB;
    color: white;
    transition: all 0.3s;
}

.tab_link:after {
    content: "";
    background-image: url(/wp-content/themes/angelsense/images/home-page/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all 0.3s;
}

.tab_link.active:after {
    background-image: url(/wp-content/themes/angelsense/images/home-page/arrow-right-white.svg);
}

.preview {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.preview.active {
    opacity: 1;
    max-height: 1550px;
    visibility: visible;
}

.preview .content {
    padding: 1em;
    background-color: #EFEFF4;
}

.preview .content p {
    margin: 0.3em 0em;
    color: #292929;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
}

.preview .content ul {
    list-style: none;
}

.preview .content ul li {
    color: #292929;
    text-align: left;
    line-height: 28px;
    position: relative;
    padding-left: 16px;
}

.preview .content ul li::before {
    content: '•'; /* Unicode for a bullet */
    color: #49C9BB; /* Bullet color */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
}

.preview .content a {
    text-decoration: underline;
    color: #49C9BB;
    font-weight: 600;
}