html {
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    color: #404040;

}

.root {
    max-width: 2560px;
    margin: 0 auto;
}

.no-display {
    display: none;
}

.nav {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 1;
}

.mobile-nav {
    position: fixed;
    right: 25px;
    top: 25px;
    width: 35px;
    display: none;
    cursor: pointer;
    background-color: #fff;
    transition: 0.3s;
}

.mobile-nav-scroll {
    margin-top: -45px;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 3px;
    background-color: #3C4048;
    margin: 6px auto;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 9px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -9px) rotate(45deg);
}

.nav-shadow {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
}

.header-image img {
    margin: 10px 0;
    height: 60px;
    margin-left: 25px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-item {
    padding: 0 15px;
    list-style: none;
    color: inherit;
    margin-right: 25px;
    white-space: nowrap;
}

.nav-item a {
    text-decoration: none;
    color: #385D8A;
}

.nav-cta {
    margin-top: 0;
}

.nav-cta a {
    background-color: #558ED5;
    padding: 15px 20px;
    color: white;
    border: 5px solid red;
}

.cta-link-svg {
    height: 15px;
}

.hero {
    margin-top: 86.4px;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.hero-content {
    padding: 80px 80px 0 60px;
}

.hero-title {
    color: white;
    font-weight: 600;
    font-size: 2.7rem;
    margin: 0;
}

.hero-para {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    width: 50%;
}

.main-hero-button {
    margin-top: 40px;
    padding: 15px 25px;
    border-radius: 0;
    color: #558ED5;
    background-color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.main-hero-button:hover {
    background-color: rgb(239, 239, 239);
}

.main-hero-button-arrow {
    height: 15px;
}

.salesforce-section {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salesforce-break {
    margin: 300px 0 0;
    border-top: 3px solid white;
}

.salesforce-image {
    height: 60px;
}

.salesforce-text {
    width: 48%;
    color: white;
    margin: 0 20px;
}

.salesforce-link {
    background-color: white;
    font-weight: 600;
    padding: 15px 20px;
    margin-right: 10px;
    color: #558ED5;
    text-decoration: none;
    white-space: nowrap;
}

/* Core product row layout (desktop) */
.product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  flex-wrap: nowrap; /* keep text + image side-by-side */
}



.product-text,
.product-image {
  box-sizing: border-box;  /* include padding in width */
  min-width: 0;            /* let content shrink instead of forcing wrap */
}

.product-text  { 
  width: calc(40% - 20px); 
  padding: 100px 80px; 
  font-size: 1.25rem; 
}

.product-image { 
  width: calc(60% - 20px); 
  padding: 100px 50px; 
  align-self: center; 
}

.product-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}

.product-heading {
    display: inline-block;
    color: #558ED5;
    border-bottom: 4px solid #558ED5;
}

.product-text ul {
    list-style-type: none;
    /* Remove default bullets */
    padding-left: 0;
    /* Add some padding to align the text */
}

.product-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.product-text ul li::before {
    position: absolute;
    content: "•";
    /* Unicode character for bullet */
    color: #558ED5;
    /* Change bullet color */
    font-size: 40px;
    /* Increase bullet size */
    margin-right: 10px;
    /* Space between bullet and text */
    left: 0;
    top: 0;
    line-height: 1.75rem;
}

.product-section > .product:nth-of-type(odd) {
  flex-direction: row; /* normal order */
}

.product-section > .product:nth-of-type(even) {
  flex-direction: row-reverse; /* flip every second one */
}

.product-section > .product.product-bg-color-reverse:nth-of-type(odd)  {
    background-color:#fff; 
    
}
.product-section > .product.product-bg-color-reverse:nth-of-type(even) { 
    background-color:#E5EEF9; 
    
}

.testimonials {
    margin-bottom: 30px;
}

.testimonial-content {
    animation: testimonial-carousel ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    gap: 5vw;
    position: relative;
    left: -60vw;
}

.testimonial-active {
    transform: scale(1);
}

.testimonial-heading {
    margin-top: 60px;
    text-align: center;
    color: #404040;
    font-size: 2.5rem;
    font-weight: 600;

}

.testimonial {
    position: relative;
    text-align: center;
    width: 70vw;
    color: white;
    transition: transform 1s ease-in-out;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.testimonial-title {
    text-align: left;
    margin: 50px 0 0;
    font-size: 1.5rem;
    font-weight: 600;
    width: 80%;
    align-self: center;
}

.testimonial-text {
    position: relative;
    top: 15px;
    width: 80%;
    text-align: left;
    margin: 0 0 20px;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-star-rating {
    bottom: 19%;
    color: white;
    font-size: 1.25rem;
    left: 7.5%;
}

.testimonial-user {
    margin-top: auto;
    margin-bottom: 10%;
    width: 80%;
    text-align: left;
    font-weight: 600;
}

.testimonial-user span {
    font-weight: 400;
}

.testimonial-quotes {
    width: 5%;
    display: inline-block;
    position: absolute;
}

.testimonial-quote-left {
    left: 6%;
    top: 5%;
    transform: translate(-50%, 50%);
}

.testimonial-quote-right {
    right: 6%;
    bottom: 17.5%;
    transform: translate(50%, -50%);
}

.testimonial-end {
    font-weight: 500;
    color: #4F81BC;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    text-align: center;
}

.footer {
    padding-top: 80px;
    color: white;
    background-size: cover;
}

.footer-main {
    display: flex;
    margin-bottom: 125px;
}

.footer-left {
    width: 40%;
    padding-left: 80px;
}

.footer-left img {
    height: 90px;
    margin-bottom: 50px;
}

.footer-statement {
    margin: 0;
    font-weight: 600;
}

.footer-text {
    margin: 10px 0 30px;
}

.footer-buttons a {
    text-align: center;
    display: inline-block;
    width: 170px;
    height: 40px;
    text-decoration: none;
    line-height: 40px;
    border: 2px solid white;
}

.demo-button {
    background-color: white;
    color: black;
}

.trial-button {
    margin-left: 20px;
    color: white;
}

.footer-right {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

.links,
.contact {
    margin-left: 80px;
    margin-right: 80px;
    width: 30%;
}

.links ul,
.contact ul {
    padding: 0;
    list-style-type: none;
}

.site-link-title {
    padding-left: 30px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-link {
    padding-left: 30px;
    position: relative;
    margin: 20px 0;
}

.links ul li a,
.contact ul li a {
    color: white;
    text-decoration: none;
}

.footer-copyright {
    background-color: #558ED5;
    padding: 10px 0;
    width: 100%;
}

.contact-icon {
    width: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}

.footer-copyright p {
    text-align: center;
    color: white;
    margin: 0;
}



.page-title {
    font-size: 5rem;
    font-weight: 700;
    color: #558ED5;
    padding-left: 80px;
    width: 50%;
}




.product-page-item-heading {
    border: none;
}

.faq-container {
    margin-top: 60px;
    margin-bottom: 60px;
}

.faq-item {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border: 2px #4F81BC solid;
    font-size: 1.25rem;
}

.faq-question {
    color: #558ED5;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 10px 40px;
    font-weight: 500;
    display: inline-block;
}

.faq-question h3:hover {
    cursor: pointer;
}

.faq-question button {
    background-color: inherit;
    border: none;
    margin-right: 40px;
    height: 80%;
}

.faq-question button:hover {
    cursor: pointer;
}

.faq-question button img {
    height: 40px;
}

.faq-answer {
    border-top: 2px #4F81BC solid;
}

.faq-answer p {
    margin-left: 40px;
    margin-right: 40px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-answer.faq-active {
    max-height: 500px;
    /* Adjust based on content size */
    opacity: 1;
}

.faq-question button {
    transition: transform 0.4s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.faq-question button img {
    transform: rotate(180deg);
    /* Default rotated */
    transition: transform 0.4s ease;
}

.faq-question button.faq-active img {
    transform: rotate(0deg);
    /* Rotate to original when active */
}

.blog-post-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 0 90px;
}

.single-blog-post {
    width: 29%;
    margin: 100px 25px 0;
    box-shadow: 0 5px 13px rgba(0, 0, 0, 0.25);
}

.single-blog-post a {
    text-decoration: none;
}

.post-thumbnail {
    width: 100%;
    height: 280px;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.single-blog-post a {
    text-decoration: none;
}

.post-title {
    font-weight: 500;
    text-decoration: none;
    font-size: 1.5rem;
    color: #385D8A;
    padding: 0 30px;
}

.post-excerpt {
    font-size: 1rem;
    padding: 0 30px;
}

.pagination {
    text-align: center;
    margin: 40px;
}

.page-number {
    font-size: 1.25rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #385D8A;
    line-height: 50px;
    display: inline-block;
    margin: 0 10px;
}

.page-number:has(.current) {
    background-color: #DDE8F7;
} 

.page-number .page-numbers {
    text-decoration: none;
}

.no-post {
    text-align: center;
    margin: 50px;
    font-size: 2rem;
    color: #385D8A;
}

.post-date {
    text-align: right;
    padding: 10px 30px;
    color: #385D8A;
}

.content-area {
    margin-top: 86.4px;
}

.post-image {
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
}

.dark-overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
}

.post-title-single {
    bottom: 50px;
    color: white;
    padding: 0 100px;
    position: absolute;
    font-size: 2rem;
    font-weight: 500;
}

.post-date-single {
    width: 80%;
    margin: 20px auto 50px;
}

.post-content-single {
    padding-bottom: 100px;
    width: 80%;
    margin: 0 auto;
}

.anygoal-demo-container{
    margin-bottom: 50px;
}

.wp-block-list {
    list-style-type: none;
    padding-left: 0;

}

.wp-block-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.wp-block-list li::before {
    position: absolute;
    content: "•";
    color: #558ED5;
    font-size: 40px;
    margin-right: 10px;
    left: 0;
    top: 0;
    line-height: 1.3rem;
}

.wp-block-list li::marker {
    color: #385D8A;
}

.form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #558ED5;
}

.contact-form {
    width: 60%;
    margin: 50px auto;
}

.contact-input {
    font-weight: 500;
    font-size: 1.25rem;
}

.fname,
.lname {
    width: 49%;
    display: inline-block;
}

.lname {
    float: right;
}

.google-captcha {
    margin-top: 20px;
}

.contact-input-radio input {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-text {
    width: 100%;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 5px;
    border: 1px solid #404040;
    box-sizing: border-box;
}

#contact-description {
    padding: 20px;
    margin-top: 5px;
    width: 100%;
    resize: none;
    height: 150px;
    border: 1px solid #404040;
    box-sizing: border-box;
}

.contact-text:focus,
#contact-description:focus {
    outline: none;
}

.contact-input input::placeholder,
#contact-description::placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.contact-radio {
    width: 15px;
    height: 15px;
}

.contact-radio-label {
    font-size: 1rem;
    font-weight: 400;
}

input,
textarea {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.submit-button button {
    width: 150px;
    height: 50px;
    margin-top: 20px;
    background-color: #558ED5;
    border: none;
    color: white;
    font-size: 1rem;
    font-family: "Poppins", san-serif;
}

.submit-button button:hover {
    background-color: #4F81BC;
    cursor: pointer;
}

.bottom-buttons {
    height: 150px;
    background-color: #DDE8F7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-bottom-button {
    margin-right: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.contact-bottom-button div {
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.contact-demo-link {
    background-color: #558ED5;
    border: 2px solid #558ED5;
    color: white;
}

.contact-trial-link {
    border: 2px solid #404040;
    color: #404040;
}

.success-message {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #e6f4ea;
    color: #4BB543;
}

.error-message {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #f4e6e6;
    color: #DC3545;
}

.flex-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.four04 {
    text-align: center;
}

.four04 h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    color: #558ED5;
    font-weight: 500;
}

.four04 h2 a {
    color: #404040;
    text-decoration: underline;
}

.image-404 {
    margin: 50px 0;
    width: 80%;
}

@media (max-width: 1300px) {
    .product-image {
        width: 50%;
    }

    .product-text {
        width: 50%;
    }

    .blog-post-grid {
        padding: 0 5%;
    }

    .single-blog-post {
        width: 45%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}

@media (max-width: 1200px) {
    .product-text {
        font-size: 1rem;
    }

    .testimonial-user {
        margin-bottom: 15%;
    }

    .testimonial-title {
        font-size: 1rem;
    }
}

@media (max-width:1150px) {
    .footer-buttons a {
        width: 140px;
    }
}

@media (max-width: 1000px) {


.product { 
    flex-direction: column; 
}

    .product-text {
        width: 100%;
        box-sizing: border-box;
        padding: 50px 80px 0;
    }

    .product-image {
        width: 60%;
        padding: 50px 50px;
    }

    .nav-links {
        flex-direction: column;
        position: fixed;
        right: 0px;
        align-items: flex-start;
        height: 100%;
        margin-top: 0;
        padding: 70px 0;
        width: 0;
        background-color: white;
        box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
        transition: 0.4s;
    }

    .nav-item {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .nav-show {
        width: 350px;
        padding: 70px 40px;
    }

    .mobile-nav {
        display: inline-block;
    }

    .nav-cta {
        margin-top: 30px;
    }

    .hero {
        background-position-x: right;
        background-size: cover;
    }

    .hero-content {
        padding-left: 10%;
        padding-right: 10%;
    }

    .hero-para {
        width: 80%;
    }

    .salesforce-break {
        border: none;
    }

    .salesforce-section {
       flex-wrap: wrap; 
        justify-content: center;
        padding: 0;
    }

    .image-div {
        order: 1;
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 80px;
    }

    .salesforce-link-div {
        order: 2;
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

    .salesforce-link {
        padding: 20px 50px;
        margin-right: 0;
    }

    .salesforce-text {
        order: 3;
        margin-bottom: 30px;
        width: 100%;
        border-top: 3px solid white;
        padding-top: 20px;
    }

    .footer-main {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer-left {
        width: 80%;
        padding: 0;
        margin: 0 auto 30px;
    }

    .footer-right {
        width: 80%;
        margin: 0 auto;
        justify-content: flex-start;
    }

    .links,
    .contact {
        margin: 0;
    }

    .contact {
        width: 50%;
    }

    .fname,
    .lname {
        width: 100%;
    }

    .links .footer-link,
    .links .site-link-title {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .testimonial-user {
        margin-bottom: 20%;
    }

    .testimonial-heading {
        font-size: 2rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .faq-item {
        width: 90%;
        font-size: 1rem;
    }
}

@media (max-width: 770px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-para {
        font-size: 1rem;
    }

    .product-image {
        width: 80%;
    }



    .page-title {
        padding-left: 0;
        width: 70%;
        text-align: center;
    }

    .page-image {
        max-width: 70%;
        max-height: 30vh;
        padding: 0px 5% 5%;
        box-sizing: border-box;
    }

    .single-blog-post {
        width: 80%;
    }
}

@media (max-width: 700px) {
    .testimonial-user {
        margin-bottom: 25%;
        font-size: 1rem;
    }

    .testimonial-title {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .testimonial-end {
        font-size: 1rem;
    }

    .post-title-single {
        padding: 0 5%;
    }

    .post-content-single {
        width: 90%;
    }

    .post-date-single {
        width: 90%;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .testimonial-user {
        margin-bottom: 30%;
    }
}

@media (max-width: 550px) {
    .testimonial-heading {
        font-size: 1.5rem;
    }

    .testimonial-content {
        left: -90vw;
    }

    .testimonial {
        width: 90vw;
    }
}

@media (max-width: 470px) {
    .testimonial-user {
        margin-bottom: 35%;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-para {
        font-size: 1rem;
    }

    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
    }

    .salesforce-break {
        margin-top: 150px;
    }

    .salesforce-image {
        height: 50px;
    }

    .image-div {
        margin-bottom: 40px;
    }

    .salesforce-text {
        margin: 0 0 30px;
    }

    .product-text {
        padding: 30px 20px 0;
    }

    .product-image {
        width: 90%;
    }

    .footer-left img {
        height: 60px;
    }

    .footer-buttons a {
        font-size: 0.8rem;
        width: 130px;
    }

    .trial-button {
        margin-left: 10px;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .faq-item {
        font-size: 0.8rem;
    }

    .faq-answer p,
    .faq-question h3 {
        margin-left: 10px;
    }

    .faq-question button {
        margin-right: 10px;
    }

    .faq-question button img {
        height: 30px;
    }

    .contact-form {
        width: 90%;
    }

    .contact-bottom-button div {
        width: 150px;
        font-size: 0.8rem;
    }

    .contact-trial-link {
        margin-right: 0;
    }

    .single-blog-post {
        width: 90%;
    }

    .page-number {
        font-size: 1rem;
    }

    .post-title-single {
        font-size: 1.5rem;
    }
}

/* Ensure dropdown menu matches main navbar */
.nav-item .dropdown-content {
    display: none;
    position: absolute;
    background: #F8F9FA; /* Adjusted to fit anyGoal’s existing navbar */
    border-radius: 0; /* Removes rounded corners for consistency */
    padding: 12px 0;
    min-width: 220px; 
    z-index: 999;
}

/* Style individual submenu links */
.nav-item .dropdown-content li {
    display: block;
    padding: 14px 20px; /* Match existing menu padding */
    font-size: 16px;
    font-weight: 500;
    color: #385D8A; /* Adjusted to match existing menu text */
    text-decoration: none;
    transition: background 0.3s ease;
}

/* Hover effect */
.nav-item .dropdown-content li:hover {
    background: #E8F0FE; /* Match existing hover effect */
}

/* Ensure submenu only appears on hover */ 
.nav-item:hover .dropdown-content {
    display: block;
}

/* HERO CTA BUTTONS — FINAL */
.cta-row{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap; 
  gap:14px;
  margin:14px 0 22px;
}

.cta-button{
  display:inline-block;
  background:#2D6FB8;          /* brighter brand blue */
  color:#fff;
  padding:12px 22px;            /* slightly taller */
  border-radius:6px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 2px 0 #1f4f82;   /* crisp, solid shadow line */
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.cta-button:hover{
  transform:translateY(-1px);
  box-shadow:0 3px 0 #1f4f82;
  opacity:.96;
}

/* Mobile tap target */
@media (max-width:640px){
  .cta-row .cta-button{
    display:block;
    width:min(360px,92%);
    margin:8px auto;
    padding:14px 18px; 
  }
}

.product-section .product {
  flex-wrap: nowrap !important;
}

@media (max-width:1000px){
  .product-section .product {
    flex-direction: column !important;
  }
}

/* Force alternating product backgrounds */
.product-section > .product { background:#fff !important; }
.product-section > .product:nth-of-type(even) { background:#E5EEF9 !important; }

/* Global Button Styles */
.btn-primary {
  display:inline-block;
  background:#2D6FB8;
  color:#fff;
  padding:14px 22px;
  border-radius:6px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 2px 0 #1f4f82;
  transition:all .15s ease-in-out;
}

.btn-primary:hover {
  background:#1f4f82;
}

.btn-secondary {
  display:inline-block;
  background:#fff;
  color:#2D6FB8;
  padding:14px 22px;
  border-radius:6px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  border:2px solid #2D6FB8;
  transition:all .15s ease-in-out;
}

.btn-secondary:hover {
  background:#E5EEF9;
}

.elifin-cta {
  display:flex; gap:14px; flex-wrap:wrap;
  justify-content:flex-start; align-items:center;
  margin-top:32px; margin-bottom:0;
}

/* ELIFIN testimonial: stack + full-width quote on mobile */
@media (max-width:768px){
  /* stack the two columns */
  #elifin{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  #elifin .product-text,
  #elifin .product-image{
    width:100% !important;
    max-width:none !important;
  }

  /* make the inner quote card span the full column */
  #elifin .product-image > div{
    width:100% !important;
    max-width:none !important;   /* override inline max-width:900px */
    margin:0 !important;         /* override inline margin:0 auto */
    padding:18px !important;
    box-sizing:border-box;
  }

  /* readable sizing on tablets */
  #elifin .product-image p{
    font-size:18px !important;
    line-height:1.55 !important;
  }
}

@media (max-width:480px){
  #elifin{ gap:14px; }
  #elifin .product-image > div{ padding:14px !important; }
  #elifin .product-image p{ font-size:16px !important; }
}
  
  







