/* Update brand colors throughout */
:root {
    --color-primary: #2563eb;
    --color-primary-light: #60a5fa;
    --color-primary-dark: #1e40af;
    --color-success: #10b981;
    --color-success-dark: #059669;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-background: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
}

/* Update body colors */
body {
    color: var(--color-text);
    background: var(--color-background);
}

/* Update header/intro sections */
[id^="intro"], #features {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

[id^="intro"]::before, #features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* Update buttons */
.button-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
}

.button-free-sample {
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-dark) 100%);
    color: var(--color-white);
}

.button-free-sample:hover {
    background: linear-gradient(135deg, var(--color-success-dark) 0%, var(--color-success) 100%);
    transform: translateY(-2px);
}

/* Update pricing table */
.pricing-table {
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.plan-name {
    color: var(--color-text);
}

.plan-price {
    color: var(--color-text);
}

.price-period, .plan-subtitle {
    color: var(--color-text-light);
}

/* Update navigation */
.nav-link {
    color: var(--color-text-light);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-logo {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* row styling */
.row {
    padding-bottom: 20px; /* Added padding to the bottom of the row */
}

/* FAQ styling */
.custom-faq {
    margin: 20px 10vw; /* Use viewport width for dynamic scaling */
}

@media (min-width: 1200px) {
    .custom-faq {
        margin: 20px 120px; /* Fixed margin for larger screens */
    }
}

.custom-faq details {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 12px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-faq details:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.custom-faq details > summary {
    list-style: none;
    cursor: pointer;
    font-weight: bold; /* Make the question bold */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.custom-faq details > summary::-webkit-details-marker {
    display: none; /* Remove the default marker */
}

.custom-faq details > summary::before {
    margin-right: 8px;
    font-size: 20px;
}

.custom-faq details > summary::after {
    content: "▼"; /* Arrow icon */
    font-size: 12px;
    transition: transform 0.2s ease;
}

.custom-faq details[open] > summary::after {
    transform: rotate(180deg); /* Flip arrow when open */
}

.custom-faq details p {
    font-size: 14px;
    color: #333;
    padding: 8px 0; /* Padding inside the answer paragraph */
}

/* Base styles for the feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

.feature-list .feature-content,
.feature-list .feature-image {
    width: 100%; /* Full width on mobile */
}

.feature-list .feature-image img {
    height: 200px;
    filter: brightness(0) invert(1); /* This filter will render the images in white */
    transition: transform 0.3s ease;
}

.feature-list:hover .feature-image img {
    transform: scale(1.05);
}

/* Desktop styles */
@media (min-width: 768px) {
    .feature-list {
        flex-direction: row;
        text-align: left;
    }

    .feature-list.left,
    .feature-list.right {
        justify-content: space-between; /* This ensures content and image are on opposite ends */
    }

    .feature-list.left .feature-image {
        order: -1; /* Image before content */
        display: flex;
        justify-content: flex-end; /* Aligns the image container's content to the right */
        padding-right: 20px; /* Padding between the image and text content */
    }

    .feature-list.right .feature-image {
        order: 1; /* Image after content */
        display: flex;
        justify-content: flex-start; /* Aligns the image container's content to the left */
        padding-left: 20px; /* Padding between the image and text content */
    }

    .feature-list.left .feature-content {
        padding-left: 20px; /* For symmetry in padding when image is on the left */
    }

    .feature-list.right .feature-content {
        padding-right: 20px; /* For symmetry in padding when image is on the right */
        text-align: right; /* Justify the text to the right for feature-list.right */
    }

    .feature-list.left .feature-image img,
    .feature-list.right .feature-image img {
        width: auto; /* Adjust width as necessary */
        max-width: 100%; /* Ensure it does not overflow its container */
    }

    .feature-list .feature-content,
    .feature-list .feature-image {
        width: 50%; /* Each takes up half the space on desktop */
    }
}

/* Ensure consistency with testimonial breakpoints */
@media (max-width: 768px) {
    .feature-list,
    .feature-list .feature-content,
    .feature-list .feature-image {
        width: 100%;
        order: 0;
        margin: 0;
        padding: 0; /* Reset padding for mobile to maintain full width */
    }
}

/* Testimonial Styles */
.testimonials-section {
    text-align: center; /* Centers all inline-block children */
    width: 100%; /* Ensures the container takes full width */
    padding: 20px; /* Optional: Adds some padding around the section */
}

.testimonial-container {
    width: 30%; /* Adjust based on the total width of the container to fit 3 side by side */
    display: inline-block; /* Allows multiple testimonials to sit side-by-side */
    vertical-align: top; /* Keeps items top-aligned */
    margin: 0 1%; /* Spacing between testimonials */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
    text-align: center; /* Centers the content */
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .testimonial-container {
        width: 100%; /* Full width on smaller screens */
        margin: 10px 0; /* Adjust spacing for stacked layout */
    }
}

.testimonial-star {
    width: 20px; /* Adjust size of stars */
    height: auto; /* Maintain aspect ratio */
    filter: brightness(0) saturate(100%) invert(34%) sepia(95%) saturate(2082%) hue-rotate(2deg) brightness(93%) contrast(101%);
    /* This filter attempts to simulate a gold color */
    display: inline-block; /* Ensures stars are in a row */
}

.testimonial-quote {
    font-style: italic;
    margin-top: 10px; /* Spacing between stars and quote */
    quotes: "“" "”"; /* CSS for adding quotation marks */
}

.testimonial-quote:before {
    content: open-quote;
}

.testimonial-quote:after {
    content: close-quote;
}

/* Pricing column */
@media only screen and (max-width: 768px) {
    .pricing-column {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2000;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    margin-left: 0;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0056b3;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #0056b3;
    text-decoration: none; /* Add this line to remove underline */
}

/* Navbar responsiveness */
@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -150%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1999;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.4rem;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Button styling */
.button {
    display: inline-block;
    padding: 14px 28px;
    margin: 5px 0;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    max-width: 240px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button-primary {
    background-color: #0056b3;
    color: white;
}

.button-primary:hover {
    background-color: #004494;
}

.button-secondary {
    background-color: #4A4A4A;
    color: white;
}

.button-secondary:hover {
    background-color: #383838;
}

.button-free-sample {
    background-color: #28a745;
    color: white;
}

.button-free-sample:hover {
    background-color: #218838;
}

.plan-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

/* Remove any conflicting button styles */
.plan-cta .button {
    margin: 0;  /* Override any existing margins */
}

/* Ensure consistent button width on mobile */
@media screen and (max-width: 768px) {
    .button {
        max-width: 200px;  /* Slightly smaller on mobile */
        padding: 10px 20px;  /* Slightly smaller padding on mobile */
    }
}

/* Intro styling for both sections */
[id^="intro"] {
    background: #0056b3; /* Same solid brand blue */
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 0 20px 20px;
    margin: 0;
}

[id^="intro"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* Specific styling for sections with intro-html class */
#intro-html {
    padding: 20px 20px 0; /* No bottom padding */
}

/* Specific styling for default intro section */
#intro-default {
    padding: 0 20px 20px; /* Apply 20px padding to left, right, and bottom sides */
    background: #0056b3; /* Maintain existing background color */
    color: #fff; /* Maintain existing text color */
    text-align: center; /* Maintain existing text alignment */
}

/* Remove top and bottom margins from first and last child of intro-html */
#intro-html > :first-child,
#intro-default > :first-child {
    margin-top: 0;
}

#intro-html > :last-child,
#intro-default > :last-child {
    margin-bottom: 0;
}

/* features styling */
#features {
    background: #0056b3; /* Solid brand blue */
    color: #fff;
    text-align: center;
    padding: 20px 20px 0;
    margin: 0;
}
/* Additional styling for single page content */
main > article {
    padding: 20px; /* Adjust the padding as needed */
}

/* General styling */

* {
    box-sizing: border-box;
}


body, html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}

h1 {
    font-size: 65px; /* Adjust the size as needed */
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px; /* Example max-width; adjust as needed */
    word-wrap: break-word; /* Ensures long words do not overflow */
    text-align: center; /* Centers the text within the h1 element */
    margin-left: auto; /* Centers the h1 element within its parent */
    margin-right: auto; /* Centers the h1 element within its parent */
}

#pricing h2, #features h2, #faq h2, #leads h2 {
    font-size: 40px; /* Adjust the size as needed, slightly smaller than h1 */
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 600px; /* Example max-width; adjust as needed */
    word-wrap: break-word; /* Ensures long words do not overflow */
    text-align: center; /* Centers the text within the h2 element */
    margin-left: auto; /* Centers the h2 element within its parent */
    margin-right: auto; /* Centers the h2 element within its parent */
}

.large-text {
    font-size: 24px; /* Adjust the size as needed */
}

header {
    padding: 20px;
}

section, h2.pricing {
    padding: 0 20px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

#intro-default h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.plan-header th {
    padding: 32px 24px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border: none;
    vertical-align: top;
}

.feature-header {
    border-top: none !important;
    border-left: none !important;
    background: transparent !important;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0;
    color: #000;
}

.price-period {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
}

.pricing-table td {
    background-color: #fff;
    padding: 12px;
}

.pricing-table tbody tr:first-child td {
    padding-top: 24px;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.plan-cta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.plan-cta .button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    width: auto;
    min-width: 200px;
    font-weight: 600;
}

.plan-cta .button-primary {
    background-color: #0056b3;
    color: white;
}

.plan-cta .button-secondary {
    background-color: #4A4A4A;
    color: white;
}

.plan-header-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-period {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.plan-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.plan-cta .button {
    width: 100%;
    max-width: 240px;
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.plan-header th {
    padding: 32px 24px;
    vertical-align: top;
}

/* "Get Free Sample" button styling */
.button-free-sample {
    background-color: #28a745; /* Green color */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: 178px; /* Adjust as needed */
}

.button-free-sample:hover {
    background-color: #218838; /* Darker green on hover */
}

.pricing-table .sub-header {
    background-color: #e0e0e0; /* Light grey background */
    font-weight: bold; /* Bold text */
    text-align: left; /* Align text to the left */
    border-top: 2px solid #ccc; /* Top border for separation */
    border-bottom: 2px solid #ccc; /* Bottom border for separation */
    position: relative; /* For button positioning */
    padding-right: 40px; /* Make room for the button */
}

/* Style for the Toggle Section Buttons */
.toggle-section {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #0056b3;
    font-weight: bold;
    position: absolute; /* Position absolutely */
    right: 15px; /* Distance from right edge */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Perfect vertical centering */
    padding: 0;
    margin: 0;
}

/* Rotate the button when expanded */
.toggle-section[aria-expanded="true"] {
    transform: translateY(-50%) rotate(180deg);
    color: #FF5733;
}

/* Initially hide feature rows */
.feature-row {
    display: none;
}

/* Show feature rows when expanded */
.toggle-section[aria-expanded="true"] ~ .feature-row {
    display: table-row;
}

/* Optional: Add transition for smooth expand/collapse */
.feature-row {
    transition: display 0.3s ease;
}

/* Style for the Toggle Section Buttons */
.toggle-section {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

/* Rotate the button when expanded */
.toggle-section[aria-expanded="true"] {
    transform: translateY(-50%) rotate(180deg);
    color: #FF5733;
}

/* Optional: Hover Effects */
.toggle-section:hover {
    color: #003f7f; /* Darker shade on hover */
}

/* Ensure smooth transition for the symbol change */
.toggle-section {
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Adjust sub-header styling if needed */
.pricing-table .sub-header {
    background-color: #e0e0e0; /* Light grey background */
    font-weight: bold; /* Bold text */
    text-align: left; /* Align text to the left */
    border-top: 2px solid #ccc; /* Top border for separation */
    border-bottom: 2px solid #ccc; /* Bottom border for separation */
    position: relative;
}

/* Ensure toggle button does not disrupt table layout */
.toggle-section {
    position: relative;
    top: 2px; /* Align vertically with the text */
}

/* Optional: Transition for smooth icon change */
.toggle-section {
    transition: transform 0.3s ease;
}

/* Pricing Table Responsive Design */
.pricing-table-container {
    width: 100%;
    overflow-x: auto;
}

.pricing-table {
    min-width: 900px;
}

@media screen and (max-width: 768px) {
    .pricing-table-container {
        overflow-x: visible;
    }
    
    .pricing-table {
        min-width: unset;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        border: none;
    }

    /* Hide the original table structure */
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td,
    .pricing-table th {
        display: block;
        width: 100%;
    }

    /* Create individual plan cards */
    .plan-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .plan-header-content {
        text-align: center;
        padding: 1.5rem;
        border-bottom: 1px solid #eee;
    }

    /* Hide the feature header column */
    .feature-header {
        display: none !important;
    }

    /* Style each plan's features */
    .feature-list {
        padding: 1rem;
    }

    .feature-item {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .feature-label {
        font-weight: 600;
        color: #666;
    }

    /* Style section headers */
    .sub-header {
        background: #f5f5f5;
        padding: 1rem;
        margin: 1rem -1rem;
        font-weight: 600;
    }

    /* Adjust button styling */
    .plan-cta {
        margin-top: 1.5rem;
    }

    .plan-cta .button {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Hide all plans initially except the first one */
    .plan-card:not(:first-child) {
        display: none;
    }

    /* Add plan navigation */
    .plan-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1rem 0;
    }

    .plan-nav-button {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
        cursor: pointer;
    }

    .plan-nav-button.active {
        background: #0056b3;
        color: white;
        border-color: #0056b3;
    }

    /* Desktop feature rows initial state */
    .feature-row {
        display: block;  /* Reset for mobile view */
    }
}

/* Additional mobile adjustments for very small screens */
@media screen and (max-width: 480px) {
    .pricing-table tbody tr {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .plan-nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 0 1rem;
    }
    
    .plan-nav-button {
        padding: 0.75rem 1rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
        cursor: pointer;
        font-weight: 500;
        flex: 1;
        max-width: 150px;
    }
    
    .plan-nav-button.active {
        background: #0056b3;
        color: white;
        border-color: #0056b3;
    }
    
    .plan-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .plan-header-content {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    
    .feature-item {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .feature-label {
        font-weight: 500;
        color: #666;
    }
    
    .feature-value {
        font-weight: 600;
    }
    
    .plan-cta {
        margin-top: 1.5rem;
    }
    
    .plan-cta .button {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Desktop-specific styles */
@media screen and (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: table !important;
    }
}

/* Base pricing table styles */
.pricing-table-container {
    width: 100%;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

/* Desktop styles */
@media screen and (min-width: 769px) {
    .mobile-only, .mobile-plans {
        display: none !important;
    }
    
    .pricing-table {
        display: table;
    }

    .pricing-table th, .pricing-table td {
        padding: 15px;
        text-align: center;
        border: 1px solid #ddd;
    }

    .plan-header th {
        padding: 24px 12px 32px;
        background: white;
        border-bottom: 2px solid #ddd;
        vertical-align: top;
    }

    .feature-header {
        border-top: none !important;
        border-left: none !important;
        background: transparent !important;
    }

    .plan-header-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
    }

    .plan-price {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0;
    }

    .price-period {
        font-size: 1rem;
        font-weight: normal;
        color: #666;
    }

    .plan-subtitle {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

    .plan-cta {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .plan-cta .button {
        width: 100%;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
    }

    .sub-header td {
        background-color: #e0e0e0;
        font-weight: bold;
        text-align: left;
        border-top: 2px solid #ccc;
        border-bottom: 2px solid #ccc;
    }

    .feature-row td {
        padding: 12px;
    }
}

/* Mobile styles (keep your existing mobile CSS) */
@media screen and (max-width: 768px) {
    /* ... your existing mobile styles ... */
}

/* Mobile pricing table styles */
@media screen and (max-width: 768px) {
    .feature-section {
        border-top: 1px solid #eee;
        margin: 10px 0;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-weight: bold;
        cursor: pointer;
    }

    .mobile-toggle {
        background: none;
        border: none;
        font-size: 20px;
        color: #0056b3;
        padding: 0 10px;
        cursor: pointer;
    }

    .section-features {
        padding-left: 15px;
    }

    .feature-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    .feature-label {
        color: #666;
    }

    .feature-value {
        font-weight: 500;
    }
}

/* Mobile header styling */
@media screen and (max-width: 768px) {
    .mobile-header {
        margin-bottom: 10px;  /* Reduced margin to account for button below */
        padding: 0 15px;
    }

    .mobile-free-sample-container {
        text-align: center;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    /* Adjust the free sample button for mobile */
    .button-free-sample {
        margin-top: 0;
        padding: 8px 12px;
        font-size: 14px;
        display: inline-block;
    }

    /* Adjust plan navigation buttons */
    .plan-nav {
        width: 100%;
    }

    .plan-nav-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Hide the desktop version of the free sample button on mobile */
@media screen and (max-width: 768px) {
    .feature-header .button-free-sample {
        display: none;
    }
}

/* Hide the mobile version of the free sample button on desktop */
@media screen and (min-width: 769px) {
    .mobile-free-sample-container {
        display: none;
    }
}

.plan-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.button-free-sample {
    font-size: 14px;
    padding: 8px 16px;
    /* Add any other styling you want for the free sample button */
}

/* Remove any previous mobile-specific free sample button styles */
.mobile-free-sample-container {
    display: none;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.button-container .button {
    display: inline-block;
    padding: 12px 24px;
    margin: 0;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    max-width: 240px;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .button-container .button {
        max-width: 200px;
        padding: 10px 20px;
    }
}

/* Style for the sub-header cells */
.pricing-table .sub-header td {
    background-color: #e0e0e0;
    font-weight: bold;
    text-align: left;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    position: relative; /* For button positioning */
    padding: 12px 40px 12px 12px; /* Right padding for button, consistent left padding */
    width: 100%; /* Ensure full width */
}

/* Style for the Toggle Section Buttons */
.toggle-section {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    right: 12px; /* Match the cell padding */
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

/* Ensure the first column width matches other rows */
.pricing-table td:first-child,
.pricing-table th:first-child {
    width: 20%; /* Increased width for the first column to prevent text wrapping */
}

/* Make the remaining columns equal width */
.pricing-table td:not(:first-child),
.pricing-table th:not(:first-child) {
    width: calc(80% / 4); /* Remaining space divided equally among 4 columns */
    text-align: center; /* Center the content in these columns */
}

/* Keep the toggle button positioning */
.pricing-table .sub-header td {
    position: relative;
    padding-right: 40px; /* Space for the toggle button */
}

.toggle-section {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

/* Base toggle button styles (shared between desktop and mobile) */
.toggle-section {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #0056b3;
    font-weight: bold;
    padding: 0;
    margin: 0;
    width: 20px;
    text-align: center;
}

/* Desktop-specific toggle button positioning */
@media screen and (min-width: 769px) {
    .toggle-section {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Mobile-specific toggle button styles */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block; /* Ensure visibility */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 20px;
        color: #0056b3;
        padding: 0 10px;
        cursor: pointer;
    }

    .section-header {
        position: relative; /* For absolute positioning of toggle button */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-weight: bold;
        cursor: pointer;
    }
}

/* Center align all non-first column cells in the pricing table */
.pricing-table td:not(:first-child),
.pricing-table th:not(:first-child) {
    width: calc(65% / 4);
    text-align: center;
}

/* Specifically target the sub-header cells */
.pricing-table .sub-header td:not(:first-child) {
    text-align: center; /* Ensure center alignment */
    padding-left: 0;    /* Remove any left padding */
    padding-right: 0;   /* Remove any right padding */
}

/* Keep the first column's sub-header left-aligned */
.pricing-table .sub-header td:first-child {
    text-align: left;
    padding-right: 40px; /* Maintain space for the toggle button */
}

/* Remove any default spacing that might be causing gaps */
#features + [id^="intro"],
#features + #intro-default,
#features + #intro-html {
    margin-top: 0;
    padding-top: 0;
}

/* Image hover effects for post-testimonial section */
.row img {
    transition: transform 0.3s ease;
}

.row:hover img {
    transform: scale(1.05);
}

/* Ensure the image container doesn't overflow */
.row {
    overflow: hidden;
}

/* Image hover effects for columns section */
.column img {
    transition: transform 0.3s ease;
}

.column:hover img {
    transform: scale(1.05);
}

/* Ensure each column container doesn't overflow */
.column {
    overflow: hidden;
}

/* Image hover effects for individual icons */
.column {
    overflow: hidden;
}

.column > img {
    transition: transform 0.3s ease;
}

/* Target the specific icon when its parent column is hovered */
.column:hover > img {
    transform: scale(1.05);
}

/* Remove any row-level hover effects that might be interfering */
.row:hover img {
    transform: none;
}

.row img {
    transition: none;
}

/* Columns hover effect */
.columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.column img {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.column:hover img {
    transform: scale(1.05);
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Icon hover effects */
.custom-column .icon-container img {
    max-width: 100px;
    transition: transform 0.3s ease;
}

.custom-column:hover .icon-container img {
    transform: scale(1.05);
}

/* Remove any other hover effects that might be interfering */
.columns:hover img,
.column:hover img,
.row:hover img {
    transform: none;
}

/* Contact selector styles */
.contacts-selector {
    margin: 10px 0;
}

.contact-dropdown {
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.contact-dropdown:hover {
    border-color: var(--color-primary);
}

.contact-dropdown:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* Ensure price transitions smoothly */
.plan-price {
    transition: all 0.3s ease;
}

/* Remove old pricing table styles */
.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Main CTA Section */
.main-cta-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #0056b3;
    color: white;
}

.button-primary:hover {
    background-color: #004494;
}

.button-secondary {
    background-color: #4A4A4A;
    color: white;
}

.button-secondary:hover {
    background-color: #383838;
}

/* Feature Showcase */
.feature-showcase {
    margin: 3rem 0;
}

.feature-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    color: #0056b3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    margin: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Bottom CTA Section */
.bottom-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.bottom-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.bottom-cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table-container {
        padding: 1rem;
    }

    .main-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .process-step {
    animation: fadeIn 0.5s ease-out forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}