/* styles.css */
/* General Styles */
body {
    margin: 0;
    padding: 0; /* Reset all padding */
    padding-top: 60px; /* Adjust this value to match the header's height, considering the padding within the header */
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
header {
    background-color: #333652;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: space-between; /* Space between logo, nav, and buttons */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    vertical-align: baseline;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: middle; /* Use middle alignment for inline images */
}

.logo-container {
    display: flex;
    align-items: center; /* Vertically center */
    justify-content: flex-start; /* Align to the left */
    margin: 0; /* Remove margins */
    padding: 5px 10px; /* Horizontal padding if needed */
    height: 80%; /* Make it fill the header's height */
}


.logo {
    width: 250px;
    height: auto;
    display: block; /* Ensure it's a block element */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
}

nav {
    display: flex;
    justify-content: center; /* Center the nav links */
    gap: 100px;
    flex: 1; /* Ensure nav takes available space */
    flex-grow: 1; /* Allow the nav to take up available space */
}

nav a {
    text-decoration: none;
    color: #1EB980;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #A9D9C3;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 20px;
    margin-left: auto; /* Ensure header buttons stay on the right */
    margin-right: 40px; /* Add space between buttons and the right edge */
}

.header-buttons a {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.header-buttons .sign-in {
    background-color: transparent;
    color: #1EB980;
}

.header-buttons .sign-in:hover {
    color: #A9D9C3;
}

.header-buttons .try-for-free {
    background-color: #1EB980;
    color: white;
}

.header-buttons .try-for-free:hover {
    background-color: #007f74;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; /* Retaining padding for spacing */
    text-align: left; /* Keep text aligned left */
}

.text-content {
    flex: 1;
    padding-right: 80px;
    padding-left: 20px;
    text-align: left;
}

.text-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333652;
    margin-bottom: 40px;
    text-align: center !important;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.cta-button {
    display: inline-block;
    margin: 0px 0; /* Equal margin on top and bottom of the button */
    padding: 10px 30px;
    background-color: #1EB980;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #007f74;
}

.main-content .feature-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    /* Adjust to move the icon a little left */
    gap: 0px; 
}

.main-content .feature-list li i {
    color: #1EB980;
    margin-right: 5px; /* Reduce the space between icon and text */
    font-size: 1.1rem;
}

.main-content .feature-list li span {
    font-weight: bold !important;
    min-width: 120px; /* Reduce minimum width to bring text closer */
    display: inline-block;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures items are centered */
    background-color: #ffffff;
    width: 100%; /* Ensure the features section spans the full width */
}

/* Flex layout for all feature-items */
.feature-item {
    display: flex;
    flex-direction: row; /* Ensures the image and text are side by side */
    align-items: center;
    justify-content: space-between; /* Adds space between image and text */
    margin-bottom: 40px;
    box-sizing: border-box;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-right: 5px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the text horizontally */
}

/* Feature item with 44% width */
.feature-item-44 {
    width: 44%; /* Custom width */
}

/* Feature item with 60% width */
.feature-item-60 {
    width: 60%; /* Custom width */
}

.feature-item .feature-image-small {
    width: 300px;
    height: auto;
}

.feature-item .feature-image-large {
    width: 600px;
    height: auto;
}

.feature-item p {
    text-align: center;
}

.feature-item div {
    flex-grow: 1; /* Allow the text container to take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the text vertically inside the div */
}

.feature-item ul {
    list-style: none;
    padding: 30px;
    margin: 0;
    line-height: 1.5;
}

/* List items alignment */
.feature-item li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Icon styling */
.feature-item li i {
    color: #1EB980;
    margin-right: 10px;
    width: 20px;
    text-align: left;
}

#qualbot-video {
    width: 100%; /* Make the video take up 100% of the available width */
    height: auto; /* Maintain the aspect ratio */
    max-width: 100%; /* Prevent the video from exceeding the container size */
    display: block;
}
.video-content {
    flex: 1;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 100%; /* Make the video take up 100% of the available width */
}

.testimonials {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features h2, .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-item {
    display: inline-block;
    width: 30%;
    margin: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

h2.bold-first-word span {
    font-weight: bold;
}

/* FAQ Specific Styles */
.faq-section {
    padding: 0px;
    margin-top: 20px;
}

.faq-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}
.faq-item {
    margin-bottom: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item .toggle-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #1EB980;
    transition: color 0.3s ease;
    vertical-align: middle;
    line-height: 1;
    margin-right: 10px;
}
.faq-item .toggle-icon:hover {
    color: #007f74;
}
.faq-answer {
    display: none;
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}
.hamburger {
    display: none; /* Hide on desktop */
}

/* Footer styling */
footer {
    display: block;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #333652; /* Ensure consistent background color */
    color: white;
    text-align: center;
    z-index: 100;
    gap: 100px;
    margin-top: 20px; /* Added margin-top */
}


/* Footer container with flexbox for alignment */
.footer-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column; /* Stack items vertically */
}

/* Footer nav links */
.footer-nav a {
    color: #1EB980; /* Green color for links */
    text-decoration: none; /* Remove underlines */
    margin-right: 15px; /* Space between links */
    font-size: 1rem; /* Set font size */
}

/* Last link in the nav doesn't need margin-right */
.footer-nav a:last-child {
    margin-right: 0;
}

/* Hover effect for footer links */
.footer-nav a:hover {
    color: #A9D9C3; /* Lighter green on hover */
    text-decoration: underline; /* Underline on hover */
}

/* Pricing section styles */
/* Pricing section styles */
.pricing-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
  }
  
  .pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .pricing-section p {
    color: #666;
    margin-bottom: 40px;
  }
  
  .pricing-cards {
    display: flex;
    justify-content: center; /* This centers the cards */
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Individual pricing card */
  .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 350px; /* Increase width slightly */
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .price {
    font-size: 2rem;
    margin: 20px 0;
    color: #1EB980;
  }
  
  .price span {
    font-size: 1rem;
    color: #666;
  }
  
  /* Features styling */
  .card ul {
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Padding to separate from the left */
    text-align: left; /* Left-align the feature list */
    margin-top: 30px; /* Space between pricing and features */
  }
  
  .card ul li {
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Styling for the "OR" list item */
  .card ul li.or-item {
    list-style: none; /* Remove the bullet point */
    text-align: left; /* Center align the text */
    font-weight: bold; /* Make the text bold */
    color: #1EB980; /* Green color */
    padding-left: 100;
    margin: 15px 0; /* Add some spacing around the "OR" */
  }
  
  /* Call to Action button */
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1EB980;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Space between the feature list and the button */
  }
  
  .cta-button:hover {
    background-color: #007f74;
  }  
  
/* Included Card Styles */
.included-card {
    background-color: white;
    padding: 20px 40px 40px 40px; /* Reduced top padding */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Wider card */
    margin: 40px auto; /* Centers the card */
    text-align: center;
  }
  .included-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333652;
  }
  
  .included-content {
    display: flex;
    justify-content: space-between; /* Distribute the two columns evenly */
    gap: 10px; /* Space between columns */
    padding: 0 30px; /* Adjust padding inside the content */
  }
  
  .column {
    flex: 1;
    text-align: left;
  }
  
  .included-content ul {
    list-style: none;
    padding-left: 0;
  }
  
  .included-content ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .included-content ul li i {
    color: #1EB980; /* Green checkmark color */
    margin-right: 10px;
    font-size: 1rem;
  }
  
/* Style for the email link */
.custom-email-link {
    color: #1EB980; /* Green color used elsewhere */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Optional: Make it bold */
    transition: color 0.3s ease; /* Add a smooth transition on hover */
  }
  
  .custom-email-link:hover {
    color: #007f74; /* Darker green on hover */
    text-decoration: underline; /* Optional: Underline on hover */
  }

  .demo-video-section {
    padding: 20px 0;
    background-color: #f4f4f4; /* Optional background color */
    text-align: center;
}

.demo-video-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.demo-video-section p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* Style the white separator */
.white-separator {
    background-color: #ffffff; /* White background */
    height: 60px; /* Adjust the height for the space you need */
    margin: 0; /* Ensure no extra margins */
    padding: 0;
}

/* Mobile responsive styles */
@media (max-width: 768px) {

    .logo {
        width: 200px; /* Smaller logo for mobile */
        margin: 0; /* Remove any default margin */
        padding-top: 5px;
        display: block; /* Prevent inline image issues */
        height: auto;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #333652;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 0;
        z-index: 1000;
        width: 100%;
    }

    nav a {
        display: block; /* Stack items vertically */
        text-align: center; /* Center the text */
        padding: 10px 0; /* Add padding for clickable area */
        color: #1EB980;
        text-decoration: none;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }
    
    nav a:hover {
        background-color: #444A61; /* Add background color on hover for better visibility */
    }

    .hamburger {
        display: block; /* Ensure the hamburger menu is visible */
        font-size: 2rem;
        position: absolute;
        top: 20px;
        right: 15px;
        bottom: 0px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    html, body {
        margin: 0;
        padding: 0;
        padding-top: 50px; /* Adjust the padding to match mobile header height */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        width: 100%;
        height: auto; /* Ensure the body extends properly */
    }
    
    header {
        padding: 0px;
    }
  
    .header-buttons {
        display: none; /* Hide sign-in and try-for-free buttons */
    }
   
    .main-content {
        padding: 5px;
        width: 100%; /* Ensure it takes the full width */
        box-sizing: border-box; /* Include padding and borders in the width */
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically if needed */
        text-align: center;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }

    .text-content {
        padding-right: 0;
        text-align: center; /* Center the text content */
        padding-right: 0px; /* Reduce padding */
        padding-left: 10px; /* Ensure symmetrical padding */
    }

    .main-content h1 {
        font-size: 2rem !important; 
        margin-top: 0;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .main-content h2 {
        font-size: 1rem !important;
        margin-top: 1px !important;  /* Keep a small margin to separate from h1 */
    }

    .main-content div {
        text-align: center;
    }
   
    .main-content .feature-list {
        padding: 0;
        list-style: none;
        margin: 0 auto;
        max-width: 360px; /* Adjust to fit within mobile width */
    }

    .main-content .feature-list li {
        display: flex;
        align-items: flex-start; /* Align icon and text properly */
        margin-bottom: 0px; /* Reduce the spacing between list items */
        font-size: 1rem; /* Slightly smaller text for better fit */
        line-height: 1.2; /* Reduce line height to tighten the text block */
    }

    .main-content .feature-list li span {
        display: inline-block;
        font-weight: bold;
        min-width: 80px;
        margin-right: 0px; /* Reduce the space here */
    }

    .main-content ul li {
        margin-bottom: 20px !important; /* Reduce spacing between list items for mobile */
        display: flex !important; /* Maintain flex alignment */
        align-items: center !important; /* Vertically center icon and text */
        font-size: 1rem !important; /* Reduce icon size for mobile */
    }
    
    .main-content ul li i {
        margin-right: 5px !important; /* Reduce margin between icon and text */
        font-size: 1rem !important; /* Reduce icon size for mobile */
    }

    .main-content ul li span {
        font-weight: bold !important;
        margin-right: 10px !important; /* Reduce space between bold text and description */
        display: inline-block !important;
    }

    .main-content ul {
        padding-left: 0 !important;
        list-style: none !important; /* Ensure no extra padding or bullets for mobile */
    }

    .cta-container {
        margin-top: 15px;
    }

    .cta-button {
        font-size: 1rem; /* Adjust button text size */
        padding: 12px 24px; /* Adjust button padding for mobile */
        margin-top: 3px;
        margin-bottom: 2px;
    }

    .cta-text {
        font-size: 0.8rem;
        color: #666;
        margin-top: 5px;
    }

    .video-content {
        display: flex;
        justify-content: center; /* Center the video horizontally */
        align-items: center; /* Center the video vertically if needed */
        margin: 0 auto; /* Ensure the container itself is centered */
        padding: 0; /* Remove any padding */
        width: 100%; /* Take up full width of the parent */
        box-sizing: border-box; /* Ensure padding and borders are included in the width/height */
    }
    
    /* For the video element */
    video {
        max-width: 100%; /* Ensure the video fits within the container */
        width: 100%; /* Make video responsive */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto; /* Center the video */
        display: block; /* Ensure block-level for centering */
    }
    
    /* Ensure no max-width is conflicting for #qualbot-video */
    #qualbot-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .features {
        padding: 0;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }    

    .feature-list {
        padding: 10px;
        list-style: none;
        margin: 0 auto;
        text-align: left;
        max-width: 400px;
    }
    
    /* Ensure each feature item takes the full width on mobile */
    .feature-item {
        width: 100%; /* Full width */
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        margin: 0 auto; /* Center the container */
        padding: 20px 0; /* Add padding for spacing */
        box-sizing: border-box;
        text-align: center;
        flex-wrap: wrap;
    }

    .feature-item-44, .feature-item-60 {
        width: 90%; /* Adjust width if needed */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        margin: 0 auto;
        text-align: center;
    }

    .feature-item-44 img, .feature-item-60 img {
        margin: 0 auto;
        display: block;
    }

    .feature-image-small {
        width: 20%; /* Ensure images are responsive */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto; /* Center the images */
        display: block; /* Ensure no inline gaps */
    }

    .feature-image-large {
        width: 40%; /* Ensure images are responsive */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto; /* Center the images */
        display: block; /* Ensure no inline gaps */
    }

    .feature-item li {
        display: flex;
        align-items: center; /* Ensure the icon and text are vertically aligned */
        text-align: left; /* Left-align the text */
        padding-right: 15px; /* Add padding to the right */
    }
    
    .feature-item li i {
        margin-right: 10px; /* Space between the icon and the text */
        margin-left: 10px; /* Space between the icon and the text */
    }
    
    .feature-item li span {
        flex: 1; /* Allow the text to take the remaining width and align left */
        text-align: left; /* Ensure the text is left-aligned */
    }

    /* Target FAQ section and reduce font size */
    .faq-section h1 {
        font-size: 1.5rem; /* Adjust heading size */
    }

    .faq-item h3 {
        font-size: 1.1rem; /* Smaller font size for FAQ question titles */
    }

    .faq-answer {
        font-size: 1rem; /* Adjust answer font size */
        color: #555; /* Optional: Adjust color for readability */
    }

    /* Target the plus sign icon and reduce its size */
    .faq-item .toggle-icon {
        font-size: 1rem; /* Smaller icon size */

    }

    .testimonials {
        padding: 20px;
    }

    /* Adjust the heading size */
    .testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Stack testimonial items vertically */
    .testimonial-item {
        display: block;          /* Change from inline-block to block */
        width: 100%;             /* Full width */
        margin: 10px 0;          /* Vertical spacing between cards */
        box-sizing: border-box;  /* Include padding and border in width */
    }

    /* Optional: Adjust the text size for mobile */
    .testimonial-item p {
        font-size: 1rem;         /* Slightly smaller text */
    }

    /* Mobile-specific pricing adjustments */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
      }
    
      .card {
        width: 100%;
        max-width: 200px;
        margin-bottom: 20px;
      }

      .included-content {
        flex-direction: column;
        align-items: center;
      }
    
      .column {
        width: 100%;
      }

    /* Mobile-specific footer adjustments */
    
    footer {
        background-color: #333652; /* Dark background */
        padding: 0px 0; /* Reduce padding for the footer */
        width: 100%; /* Full width */
        text-align: center; /* Center text */
        color: #fff; /* Default white text */
        position: relative; /* Make sure footer stays in place */
    }
    

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Reduce the gap between the links for mobile */
        padding: 10px 0; /* Ensure clickable area is consistent */
    }

    .footer-nav a {
        font-size: 1rem;
        color: #1EB980;
    }

    .cta-button--final {
        padding: 15px 40px;
        font-size: 1.5rem;
    }
}

/* Tablet responsive styles */
@media (min-width: 769px) and (max-width: 1024px) {

    .logo {
        width: 225px; /* Slightly larger logo for tablets */
        margin: 0;
        padding-top: 10px;
        display: block;
        height: auto;
    }

    nav {
        display: flex; /* Show navigation menu */
        flex-direction: row; /* Arrange items horizontally */
        background-color: #333652;
        position: relative; /* Use relative positioning */
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        z-index: 1000;
        width: 100%;
        justify-content: center; /* Center the navigation items */
    }

    nav a {
        display: block;
        text-align: center;
        padding: 10px 15px; /* Adjust padding */
        color: #1EB980;
        text-decoration: none;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }
    
    nav a:hover {
        background-color: #444A61;
    }

    .hamburger {
        display: none; /* Hide the hamburger menu on tablets */
    }

    html, body {
        margin: 0;
        padding: 0;
        padding-top: 60px; /* Adjust padding to match header height */
        overflow-x: hidden !important;
        width: 100%;
        height: auto;
    }
    
    header {
        padding: 0px;
    }
  
    .header-buttons {
        display: block; /* Show sign-in and try-for-free buttons */
    }
   
    .main-content {
        padding: 20px;
        width: 100%; 
        box-sizing: border-box;
        display: flex;
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        text-align: center;
        overflow-x: hidden; 
    }

    .text-content {
        padding: 0 20px; /* Symmetrical padding */
        text-align: center;
    }

    .main-content h1 {
        font-size: 2.5rem !important; 
        margin-top: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .main-content h2 {
        font-size: 1.5rem !important;
        margin-top: 10px !important;  
    }

    .main-content div {
        text-align: center;
    }
   
    .main-content .feature-list {
        padding: 0;
        list-style: none;
        margin: 0 auto;
        max-width: 600px; /* Adjust to fit within tablet width */
    }

    .main-content .feature-list li {
        display: flex;
        align-items: flex-start; 
        margin-bottom: 10px; 
        font-size: 1.1rem; 
        line-height: 1.4; 
    }

    .main-content .feature-list li span {
        display: inline-block;
        font-weight: bold;
        min-width: 100px;
        margin-right: 10px; 
    }

    .main-content ul li {
        margin-bottom: 25px !important; 
        display: flex !important; 
        align-items: center !important; 
        font-size: 1.1rem !important; 
    }
    
    .main-content ul li i {
        margin-right: 10px !important; 
        font-size: 1.1rem !important; 
    }

    .main-content ul li span {
        font-weight: bold !important;
        margin-right: 15px !important; 
        display: inline-block !important;
    }

    .main-content ul {
        padding-left: 0 !important;
        list-style: none !important; 
    }

    .cta-section {
        background-color: #ffffff; /* White background for contrast */
        padding: 60px 20px; /* Adequate padding for space around */
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        min-height: 200px; /* Adjust this value to control height */
        margin: 0 auto; /* Centering the CTA */
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        text-align: center;
    }
    
    .faq-section {
        margin-bottom: 10px; /* Add extra space between the FAQ and CTA */
    }
    
    footer {
        margin-top: 100px; /* Add space between the CTA and footer */
    }

    .cta-button {
        font-size: 1.1rem; 
        padding: 14px 28px; 
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .cta-text {
        font-size: 0.9rem;
        color: #666;
        margin-top: 10px;
    }

    .video-content {
        display: flex;
        justify-content: center; 
        align-items: center; 
        margin: 0 auto; 
        padding: 0; 
        width: 100%; 
        box-sizing: border-box; 
    }
    
    /* For the video element */
    video {
        max-width: 100%; 
        width: 100%; 
        height: auto; 
        margin: 0 auto; 
        display: block; 
    }
    
    /* Ensure no max-width is conflicting for #qualbot-video */
    #qualbot-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .features {
        padding: 20px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
    }    

    .feature-list {
        padding: 20px;
        list-style: none;
        margin: 0 auto;
        text-align: left;
        max-width: 600px;
    }
    
    /* Adjust feature items for tablet */
    .feature-item {
        width: 100%; 
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        margin: 0 auto; 
        padding: 30px 0; 
        box-sizing: border-box; 
        text-align: center; 
        flex-wrap: wrap; 
    }

    .feature-item-44, .feature-item-60 {
        width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items horizontally */
        justify-content: center; /* Center items vertically */
        margin: 0 auto;
        text-align: center;
    }

    .feature-item-44 img, .feature-item-60 img {
        margin: 0 auto;
        display: block;
    }

    .feature-image-small {
        width: 30%; 
        height: auto; 
        margin: 0 auto; 
        display: block; 
    }

    .feature-image-large {
        width: 50%; 
        height: auto; 
        margin: 0 auto; 
        display: block; 
    }

    .feature-item li {
        display: flex;
        align-items: center; 
        text-align: left; 
        padding-right: 20px; 
    }
    
    .feature-item li i {
        margin-right: 15px; 
        margin-left: 15px; 
    }
    
    .feature-item li span {
        flex: 1; 
        text-align: left; 
    }

    /* Adjust FAQ section */
    .faq-section h1 {
        font-size: 1.75rem; 
    }

    .faq-item h3 {
        font-size: 1.2rem; 
    }

    .faq-answer {
        font-size: 1.1rem; 
        color: #555; 
    }

    .faq-item .toggle-icon {
        font-size: 1.1rem; 
    }

    /* Adjust testimonials */
    .testimonials {
        padding: 30px;
    }

    .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .testimonial-item {
        display: block;         
        width: 100%;             
        margin: 15px 0;          
        box-sizing: border-box;  
    }

    .testimonial-item p {
        font-size: 1.1rem;         
    }

    /* Tablet-specific pricing adjustments */
    .pricing-cards {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .card {
        width: 45%;
        max-width: 300px;
        margin: 10px;
    }

    .included-content {
        flex-direction: column;
        align-items: center;
    }
    
    .column {
        width: 100%;
    }

    /* Tablet-specific footer adjustments */
    footer {
        background-color: #333652; 
        padding: 10px 0; 
        width: 100%; 
        text-align: center; 
        color: #fff; 
        position: relative; 
    }
    
    .footer-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px; 
        padding: 10px 0; 
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-nav a {
        font-size: 1rem;
        color: #1EB980;
        margin: 5px;
        padding: 5px 10px; 
        align-items: center;
    }
}