html, body {
    background-color: black;
    height: 100%;
    margin:0;
}
table {
    border: 1px solid #000;
    border-collapse: collapse;
    max-width: 680px;
    margin: 0 auto;
}
th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    /*max-width: 1080px;*/
    margin: 0 auto;
}

.top-bar {
    position: fixed;
    top: 0;
    z-index: 1000;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    background-color:black;
}

.left-section {
    flex: 0 0 auto;
}

.floating-button {
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    background-image: url('Logo6.png'); 
    background-size: contain;
    background-position: center;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    transition: transform 0.2s ease-in-out; 
}

.middle-section {
    flex: 1;
    display: flex;
    justify-content: flex-start; /*center;*/
}

.middle-section nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.middle-section nav ul li {
    display: flex;
    list-style: none;
    padding-left: 20px;
    margin-right: 10px;
    justify-content: space-between;
}

.middle-section nav ul .menu a {
    font-size: 18px;
    text-decoration: none;
    color: white;
}

.right-section {
    flex: 0 0 auto;
}

.right-section button {
    background-color: black; /*#007bff;*/
    color: white;
    border: none;
    padding: 8px 38px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}


.footer-bar {
    padding: 10px 20px;
}

.remaining-space {
    display:flex;
    flex:1;
    flex-direction:column;
    padding: 20px 8px;
    background-color: #f0f0f0;
    /*style="padding-bottom:50px; padding-top:88px"*/
}

.Text1 {
    font-size: 38px;
    font-weight: bold;
    text-align: center; /* Center the text within its container */
    color: black;
    /*padding: 18px 28px 18px 28px;*/
    padding: 18px 0;
    max-width:500px;
    margin: 0 auto;
}
.Text2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center; /* Center the text within its container */
    color: #696969;
    max-width: 600px;
    margin: 0 auto;
}

.embed-chatbot {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding-top: 28px;
    max-width: 600px;
    margin: 0 auto;
}

.embed-chatbot img {
    height: 80px;
    margin: 8px;
    flex-shrink: 0; /* Prevent images from shrinking */
}

.Text3 {
    flex: 1; /* Take remaining space */
    /*padding-left: 20px;  Adjust the value as needed */
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
}

/*     display:flex;
    flex:1;
    flex-direction:column;
    padding: 20px 8px;
    background-color: #f0f0f0; */

.features {
    border: 1px solid rgba(0, 0, 0, 0.1); /* Border for the div */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 38px auto;
    padding: 20px;
    background-color: #f5f5f5; /*  Background color */
    color: #333; /* Text color */
}

.feature-label {
    text-align: center; /* Center the text */
    color: #003366;
    font-size: 28px; /* Font size */
    margin-bottom: 20px; /* Space between label and content */
    font-family: "Arial", sans-serif; 
}
.feature-heading {
    color: #337ab7; /* Text color */
    font-size: 24px; /* Font size */
    margin-bottom: 2; /* Space between heading and content */
    font-family: "Arial", sans-serif; 
}
.feature-content {
    color: #003366; /* Text color */
    margin-bottom: 10px; /* Space between heading and content */
    padding-top: 0;
    margin-top:0;
    font: 500 20px Arial, sans-serif;
    line-height: 1.5;
/*font-family: "Arial", sans-serif; */
}

.pricing-content-text {
    font-size: 18px;
}


.row {
    display: flex;
    flex-wrap: wrap;
}

.row > div {
    flex: 1;
    padding: 10px;
}

.center-video {
    max-width: 100%;
    margin: 0;
    height: auto;
    border-radius: 10px;
}

.auto-space {
    flex-basis: calc(50% - 5px);
    margin-bottom: 10px;
    /*style="flex-basis: 100%; margin-bottom: 10px;"*/
}

@media screen and (min-width: 1081px) {
    .container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        /*max-width: 1080px;*/
        margin: 0 auto; 
    }
}

@media screen and (max-width: 600px) {
    iframe {
        width: 100%;
    }
    #updates_message,
    #trialContent {
        padding: 8px 0; /* top/bottom, right/left */
    }
    .left-section{
        display: none;    
    }
    .right-section{
        display: none;    
    }
    .auto-space{
        flex-basis: 100%;
        margin-bottom: 10px;
    }
    .pricing-first-column {
        width:100px;
    }
    .footer-bar,
    .remaining-space,
    .embed-chatbot {
        padding-top: 50px;
        flex-direction: column; /* Stack elements vertically on smaller screens */
        text-align: center;
    }

    .embed-chatbot img {
        margin-bottom: 10px; /* Add some spacing between images and text */
    }

    .Text3 {
        padding-left: 0; /* Reset left padding for smaller screens */
    }
    .features,
    .left-section,
    .right-section button {
        padding: 10px;
    }

    .middle-section nav ul li {
        padding-left: 5px;
        margin-right: 5px;
    }

    .floating-button {
        width: 32px;
        height: 32px;
    }

    .right-section button {
        font-size: 12px;
    }
}
