/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   /* outline: 1px solid red;*/
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: ;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    box-sizing: border-box;
}

nav ul {
    display: flex;
    flex-wrap: nowrap; /* Keep items on one row */
    justify-content: space-evenly; /* Space items evenly across the row */
    padding: 0;
    margin: 0;
    list-style: none;
}

    nav ul li {
        padding: 10px 15px; /* Add consistent padding */
        text-align: center;
        white-space: nowrap; /* Prevent text wrapping */
    }

        nav ul li a {
            font-size: 1em; /* Adjust font size for better fit */
            text-decoration: none; /* Ensure links are styled consistently */
        }

.container {
    width: 98%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Header */
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    header h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: #007BFF;
    }

    header p {
        font-size: 1.2em;
        color: #666;
    }

.logo-nav {
    display: flex;
    align-items: center; /* Vertically center logo and nav */
    gap: 20px; /* Space between items */
    flex-shrink: 0;
    order: 0;
    flex: 1;
}

header .logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #007BFF;
    text-decoration: none; /* Remove underline for the link */
}

    header .logo img {
        display: block; /* Ensures no extra padding/margin affects the alignment */
        margin-bottom: 30px;
        height: auto; /* Maintain aspect ratio for the logo */
        max-height: 60px; /* Adjust as needed to match text height */
    }

header nav {
    flex-grow: 1;
    display: flex;
    justify-content: left;
    gap: 20px;
}

    header nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1em;
    }

header nav a:hover {
    text-decoration: underline;
}

.nav-menu {
    display: flex;
    flex: 1;
    white-space: nowrap;
    gap: 30px;
    order: 1;
    flex: 1;
}

header .actions {
    display: flex;
    align-items: center; /*Centers items vertically*/
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
    flex-shrink: 0;
    order: 2;
}

.sign-in-text {
    color: #333; /* Set the text color */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Adjust font weight if needed */
    margin-right: 10px; /* Add spacing if needed */
    cursor: pointer; /* Show pointer cursor on hover */
}

    .sign-in-text:hover {
        text-decoration: underline; /* Optional: Add underline on hover */
    }

header .popup-button,
.popup-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    min-width: 120px;
    max-width: 100%; /* Prevent button from exceeding parent width */
    box-sizing: border-box; /* Include padding in width calculation */
    text-align: center; /* Center-align the text inside */
    overflow: hidden; /* Prevent inner text from breaking out */
    white-space: nowrap; /* Prevent text wrapping */
}

.contact-button {}

.button-secondary {
    background-color: #4CAF50;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
    align-items: center;
    gap: 20px;
    padding: 50px 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 440px;
}

    .hero-content h1 {
        font-weight: 500;
        letter-spacing: -1.4px;
        font-size: 1.8em;
        margin-bottom: 10px;
        color: #333;
    }

    .hero-content h2 {
        font-weight: 500;
    }

    .hero-content p {
        font-size: 1em;
        color: #666;
        margin-bottom: 20px;
    }

    .hero-content .input-container {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-content input[type="text"] {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        flex: 1;
    }

    .hero-content .button-watch-demo {
        background-color: #007BFF;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
    }

.hero-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Hero Details Section */
.hero-details {
    padding: 20px 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

    .hero-details .input-container {
        display: flex;
        flex-wrap: wrap; /* Ensure input and button wrap on small screens */
        gap: 10px;
        justify-content: center;
    }

    .hero-details input[type="text"] {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        flex: 1;
    }

    .hero-details .popup-button {
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        background-color: #007BFF;
    }

.review-sources {
    display: flex;
    gap: 15px; /* Space between logos */
    margin-top: 10px;
    align-items: center;
}

.review-logo {
    height: 50px; /* Set a consistent height for logos */
    width: auto; /* Maintain the aspect ratio */
}

/* Secondary Section */
.features {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}

.features-heading {
    max-width: 1000px; /* Limit the width of the heading */
    margin: 0 auto 30px auto; /* Center it horizontally and add space below */
    text-align: center; /* Center-align text */
}

.features h2 {
    max-width: 100%;
    font-size: 1.8em;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    color: #333;
}

.features-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .feature-item h3 {
        font-size: 1.5em;
        font-weight: 500;
        letter-spacing: -1.4px;
        margin-bottom: 15px;
        color: #333;
    }

    .feature-item p {
        font-size: 1em;
        color: #666;
    }

/* Additional Features */
.additional-features {
    background-color: #ffffff;
    padding: 50px 0px;
}

.feature-block {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 0px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.feature-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

    .feature-content img {
        flex: 3; /* Image takes up most of the width */
        max-width: 70%;
        height: auto;
        border-radius: 8px;
        /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
        object-fit: cover;
    }

.feature-video {
    flex: 3; /* Video takes up most of the width */
    max-width: 70%;
    height: auto;
    border-radius: 8px;
    /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
    object-fit: cover; /* Ensures the video covers its container neatly */
}

.feature-text {
    flex: 2; /* Text takes up less width */
    text-align: left;
    padding: 20px;
}

    .feature-text h2 {
        font-size: 1.8em;
        font-weight: 500;
        letter-spacing: -1.5px;
        color: #333;
        margin-bottom: 10px;
    }

    .feature-text p {
        font-size: 1em;
        color: #555;
        margin-bottom: 15px;
    }

.learn-more {
    color: #007BFF;
    text-decoration: underline;
    font-size: 0.9em;
    cursor: pointer;
}

    .learn-more:hover {
        text-decoration: none;
    }




/* Blog Entries */
.blogHeader {
    text-align: center; /* Center-aligns text */
    margin: 0 auto; /* Ensures no unintended side margins */
    padding: 20px 0; /* Optional: Adds vertical spacing */
    max-width: 100%; /* Ensures it spans the full width of its container */
}

.blogHeader h2 {
    font-size: 2em;
    font-weight: 500;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-entry {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .blog-entry:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .blog-entry img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.read-more {
    text-decoration: none;
    font-weight: 500;
    color: #007BFF;
}

    .read-more:hover {
        text-decoration: underline;
    }

/* Blog Post Styles */
.blog-post {
    text-align: left;
    margin: 50px 0;
}

.blog-header {
    display: flex;
    flex-direction: row; /* Arrange text and image side by side */
    gap: 20px; /* Add space between text and image */
    align-items: flex-start;
    margin-bottom: 10px; /* Add spacing below the header */
}

.blog-text {
    flex: 2; /* Title and meta info take less width */
    text-align: left;
}

.blog-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.blog-meta {
    font-size: 0.9em;
    color: #666;
}

.blog-image {
    flex: 3; /* Image takes more width */
    max-width: 100%;
}

    .blog-image img {
        width: 100%; /* Ensure image is responsive */
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.blog-content {
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.5;
    color: #555;
}

    .blog-content h3 {
        font-size: 1.5em;
        font-weight: 500;
        margin-bottom: 10px;
        color: #007BFF;
    }

    .blog-content p {
        font-size: 1em;
        color: #666;
        margin-bottom: 0px;
    }

    .blog-content h2 {
        font-size: 1.5em;
        font-weight: 600;
        margin-bottom: -20px;
    }

    .blog-content ol {
        padding-left: 20px; /* Adds space on the left */
        margin-left: 20px; /* Optional: Adjust this for more spacing */
        margin-bottom: 0px;
    }

    .blog-content ul {
        padding-left: 20px; /* Adds space on the left */
        margin-left: 20px; /* Optional: Adjust this for more spacing */
        margin-bottom: 0px;
    }

    .blog-content li {
        margin-bottom: 0px; /* Adds spacing between list items for readability */
    }

.related-posts {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

    .related-posts h3 {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 15px;
    }

    .related-posts ul {
        list-style: none;
        padding: 0;
    }

        .related-posts ul li {
            margin-bottom: 10px;
        }

            .related-posts ul li a {
                color: #007BFF;
                text-decoration: none;
            }

                .related-posts ul li a:hover {
                    text-decoration: underline;
                }

.blogBlock {
    margin-bottom: 50px;
    
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 0px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.blogBlock-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

    .blogBlock-content img {
        flex: 1; /* Image takes up most of the width */
        max-width: 70%;
        height: auto;
        border-radius: 8px;
        /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
        object-fit: cover;
    }

.blogBlock-text {
    flex: 4; /* Text takes up less width */
    text-align: left;
    padding: 20px;
}

    .blogBlock-text h2 {
        font-size: 1.8em;
        font-weight: 500;
        letter-spacing: -1.5px;
        color: #333;
        margin-bottom: 10px;
    }

/* Login Form Section */
.login {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

    .login h3 {
        margin-bottom: 20px;
    }

#loginForm {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

    #loginForm label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    #loginForm input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    #loginForm button {
        background-color: #007BFF;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: 100%;
    }

        #loginForm button:hover {
            background-color: #0056b3;
        }

    #loginForm a {
        display: block;
        margin-top: 10px;
        color: #007BFF;
    }

    .agree-container {
    display: flex; /* Aligns checkbox and label horizontally */
    align-items: center; /* Centers the label text vertically with the checkbox */
    gap: 8px; /* Adds space between checkbox and label */
    margin: 0; /* Removes extra margins */
    padding: 0; /* Ensures no extra padding is added */
    width: 100%; /* Full width alignment */
    }

        .agree-container input[type="checkbox"] {
            margin: 0; /* Removes default margins from the checkbox */
            padding: 0; /* Ensures no padding is applied */
        }

        .agree-container label {
            margin: 0; /* Removes extra space around the label */
            line-height: 1.5; /* Ensures proper spacing for multi-line labels */
        }

        .agree-container a {
            color: #007BFF; /* Matches your current design for links */
            text-decoration: none;
        }

            .agree-container a:hover {
                text-decoration: underline;
            }

/* EditAccount Form Section */
.editAccount {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

    .editAccount h3 {
        margin-bottom: 20px;
    }

.editAccountForm {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .editAccountForm label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .editAccountForm input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .editAccountForm textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .editAccountForm button {
        background-color: #007BFF;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        width: 50%;
    }

        .editAccountForm button:hover {
            background-color: #0056b3;
        }

    .editAccountForm a {
        display: block;
        margin-top: 10px;
        color: #007BFF;
    }

    .inline-label {
        display: flex;
        align-items: center;
        gap: 8px; /* Space between checkbox and label */
    }

        .inline-label input {
            margin: 0; /* Remove browser-default margin from checkbox/radio */
        }

        .inline-label label {
            margin: 0; /* Remove browser-default margin from the label */
        }

/* Account Info Page Container */
.account-container {
    width: 600px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Account Header */
.account-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Account Details */
.account-details {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between rows */
}

/* Detail Row */
.detail-row {
    display: flex;
    border-bottom: 1px solid #f1f1f1;
    padding: 8px 0;
    gap: 10px;
    padding: 4px 0;
    line-height: 1.2;
}

    /* Labels */
    .detail-row label {
        font-weight: bold;
        color: #555;
       
    }

    /* Data */
    .detail-row span {
        color: #333;
        font-weight: normal;
        flex: 1;
    }

/* Payment Status Styling */
        .detail-row span.status-active {
            color: #4CAF50; /* Green for paid */
            font-weight: bold;
        }

        .detail-row span.status-inactive {
            color: #F44336; /* Red for unpaid */
            font-weight: bold;
        }

.stripe-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #3298da;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .stripe-button:hover {
        background-color: #2876a9;
    }

/* Footer Styles */
.site-footer {
    background-color: #334455;
    margin-top: 28px;
    color: #fff;
    padding: 20px 0;
}

.site-footer .container,
.footer-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.footer-content {
    padding: 0;
}

.footer-nav,
.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.social-media a,
.footer-copyright {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-copyright p {
    margin: 0;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #fff;
    text-decoration: underline;
}
/* Popup container */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

    .popup h2 {
        margin-bottom: 20px;
        font-size: 1.5em;
    }

.form-group {
    margin-bottom: 15px;
    text-align: left; /* Aligns labels to the left */
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
    }

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .form-actions button {
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        background-color: #007BFF;
        color: white;
        font-weight: bold;
    }
        .form-actions button:hover {
            background-color: #005BDF;
        }

    .form-actions .close-popup-btn {
        background-color: #ff4c4c;
    }

        .form-actions .close-popup-btn:hover {
            background-color: #c63a3a;
        }

/* Subscription Popup */
.subscriptionPopup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Contact page */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

    .contact-container h1 {
        text-align: left;
        font-weight: 500;
    }

.contact-info {
    font-weight: 500;
    margin-top: 20px;
}

    .contact-info a {
        color: #007BFF;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Pricing Page */
.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-section {
    margin: 20px 0;
}

.pricing-highlight {
    font-weight: 600;
    color: #007BFF;
}

.pricing-section ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style-type: disc;
}

    .pricing-section ul ul {
        list-style-type: circle;
        padding-left: 30px;
    }

    .pricing-section h2 {
        font-weight: 500;
    }

/* Style for Centered Menu */
.centered-menu {
    margin-top: 30px;
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Horizontally center the menu */
}

    .centered-menu ul {
        list-style-type: none; /* Remove bullet points */
        margin: 0;
        padding: 0;
        display: inline-flex; /* Use inline-flex to keep the menu inline and centered */
        justify-content: center; /* Center the list items within the nav */
    }

        .centered-menu ul li {
            margin: 0 15px; /* Add space between the menu items */
        }

            .centered-menu ul li a {
                text-decoration: none;
                color: #333;
                font-weight: bold;
                padding: 10px 15px; /* Add padding around the links */
                transition: background-color 0.3s ease;
            }

                .centered-menu ul li a:hover {
                    text-decoration: underline;
                    border-radius: 5px; /* Add rounded corners to hover effect */
                }

/*Upload page*/
.success-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

.success-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto; /* Enable scrolling for long content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    min-height: 240px;
}
    .success-popup-content h1 {
        text-align: center;
    }

    .success-popup-content p {
        margin-bottom: 20px;
    }

.closeSuccessButton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #3298da;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
    .closeSuccessButton:hover {
        background-color: #2876a9;
    }

.help-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

.help-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto; /* Enable scrolling for long content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

    .help-popup-content h2 {
        margin-bottom: 10px;
        color: #333;
        font-size: 1.5em;
    }

    .help-popup-content p {
        margin-bottom: 15px;
        line-height: 1.5;
        color: #555;
        font-size: 1em;
    }

    .help-popup-content img {
        width: 100%;
        margin:0px 0px 25px 0px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .help-popup-content ul {
        margin: 10px 0 20px;
        padding-left: 20px;
    }

        .help-popup-content ul li {
            margin-bottom: 10px;
            color: #555;
        }


/* Trigger styling */
.help-popup-trigger {
    color: #007BFF;
    cursor: pointer;
}

    .help-popup-trigger:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.upload-section {
    position: relative; /* Ensure the loading overlay is positioned relative to this section */
    text-align: center;
    width: 50%;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

    .upload-loading-overlay {
        display: none; /* Initially hidden */
        position: absolute; /* Position relative to the upload-section */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9); /* Semi-transparent gray background */
        justify-content: center;
        align-items: center;
        z-index: 10; /* Ensure it sits above all content in the section */
        border-radius: 8px; /* Match the border-radius of the upload-section */
    }
        .upload-loading-overlay img {
            width: 50px; /* Adjust the size of the loading GIF */
        }

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensures both children have equal height */
    max-width: 100%; /* Use all available width */
    margin: 0 auto; /* Center the flex container horizontally */
    gap: 20px; /* Space between elements */
    flex-wrap: wrap; /* Allow wrapping for small screens */
}

.upload-container {
    position: relative; /* Ensure the loading overlay is positioned relative to this section */
    border: 2px dashed #3298da;
    border-radius: 10px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px; /* Allow the container to shrink and grow */
    max-width: 100%; /* Cap width for consistency */
}

/* Header */
.upload-header {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
}

/* Upload Icon */
.upload-icon {
    font-size: 50px;
    color: #6495ED;
}

/* Instructions */
.upload-instructions {
    font-size: 14px;
    color: #777;
    margin: 15px 0;
}

/* Browse Button */
.browse-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #3298da;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .browse-button:hover {
        background-color: #2876a9;
    }

/* Status Message */
.status-message {
    text-align: left;
    font-size: 14px;
    color: #555;
    padding: 20px;
    flex: 1 1 300px; /* Allow the status message to shrink and grow */
    max-width: 50%; /* Cap width for consistency */
    min-height: 100px; /* Ensure consistent height with upload container */
}

.file-input {
    display: none;
}

/* Hamburger Menu Styling */
.hamburger-menu {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

.createAccount-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .createAccount-container h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
        text-align: center;
    }

.createAccount-form-group {
    margin-bottom: 15px;
}

    .createAccount-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .createAccount-form-group input[type="text"],
    .createAccount-form-group input[type="email"],
    .createAccount-form-group input[type="password"],
    .createAccount-form-group input[type="tel"],
    .createAccount-form-group input[type="url"] {
        width: 100%;
        padding: 10px;
        font-size: 1em;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }

.createAccount-button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .createAccount-button:hover {
        background-color: #0056b3;
    }

.createAccount-terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .createAccount-terms-container input[type="checkbox"] {
        margin: 0;
    }

    .createAccount-terms-container label {
        margin: 0;
        font-weight: normal;
    }

    .createAccount-terms-container a {
        color: #007BFF;
        text-decoration: none;
    }

        .createAccount-terms-container a:hover {
            text-decoration: underline;
        }

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .faq-container ol {
        margin-left: 16px; /* Indents the ordered list */
    }

.faq-logo {
    float: right; /* Places the logo to the right */
    margin: 0 0 20px 20px; /* Adds spacing around the logo */
    max-width: 340px; /* Adjust the size of the logo */
}

.faq-header {
    text-align: left;
    font-size: 2em;
    color: #555;
    margin-bottom: 2px;
}

.faq-subheader {
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.faq-section-title {
    margin-top: 50px;
    color: #555;
    font-size: 1.2em;
}

.faq-paragraph {
    margin: 10px 0;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.faq-highlight {
    font-weight: bold;
}

.faq-emoji {
    font-size: 1.2em;
}

.faq-two-column-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    margin-left: 16px;
    margin-bottom: 50px;
    padding-left: 0;
    list-style: none;
}

    .faq-two-column-list li {
        flex: 0 0 calc(50% - 10px); /* Each column takes 50% of the width */
        list-style-type: disc;
        line-height: 0.8; /* Reduced line spacing */
        margin-bottom: 5px; /* Smaller margin between items */
    }


/* Terms of Service*/
.terms-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .terms-container p {
        margin: 10px 0;
        margin-bottom: 30px;
        line-height: 1.6;
        color: #555;
    }

    .terms-container h1 {
        text-align: left;
        font-size: 2em;
        color: #333;
        margin-bottom: 2px;
    }

    .terms-container h2 {
        font-weight: bold;
        text-align: left;
        margin-bottom: 0px;
        color: #333;
    }

    .terms-container ol {
        margin-left: 30px; /* Indents the ordered list */
        margin-bottom: 30px;
    }

.greeting-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    width: 300px;
}

.greeting-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

    /* Style the close (X) button */
    .greeting-close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 18px;
        font-weight: bold;
        border: none;
        background: none;
        cursor: pointer;
    }

        .greeting-close-btn:hover {
            color: gray;
        }

    .greeting-popup h1,
    .greeting-popup h2,
    .greeting-popup h3 {
        font-size: 20px; /* Adjust heading sizes */
    }

    /* Make buttons inside the popup have larger text */
    .greeting-popup button {
        font-size: 20px;
    }

    /* Style for the Yes button */
    .greeting-yes-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    min-width: 120px;
    max-width: 100%; /* Prevent button from exceeding parent width */
    box-sizing: border-box; /* Include padding in width calculation */
    text-align: center; /* Center-align the text inside */
    overflow: hidden; /* Prevent inner text from breaking out */
    white-space: nowrap; /* Prevent text wrapping */
    }

/* Make the Calendly badge button match .popup-button */
.calendly-badge-widget {
    display: inline-block !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    color: #aaf !important;
    text-decoration: none !important;
    min-width: 120px !important;
    max-width: 100% !important; /* Prevent button from exceeding parent width */
    box-sizing: border-box !important; /* Include padding in width calculation */
    text-align: center !important; /* Center-align text */
    overflow: hidden !important; /* Prevent inner text from breaking out */
    white-space: nowrap !important; /* Prevent text wrapping */
    border: none !important;
    cursor: pointer !important;
}

/* Ensure correct positioning at the bottom right */
.calendly-badge-widget {
    border-radius: 5px !important; /* Main button */
}

    /* Override inner elements that cause the oval effect */
    .calendly-badge-widget .calendly-badge-content {
        border-radius: 5px !important; /* Fix rounded corners */
        padding: 10px 20px !important; /* Ensure padding is correct */
    }

/* Account Info Page Container */
.log-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.log-details {
    max-height: 400px;
    overflow-y: scroll;
    font-family: monospace;
    padding: 10px;
    border: 1px solid #ccc;
    white-space: pre-wrap;
}

    .log-details pre {
        white-space: pre;
        font-family: monospace;
        font-family: Arial, sans-serif;
        font-size: 1.2em;
    }

/* Account List Page */
.accountList-container {
    width: 600px;
    max-width: 1600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

    .accountList-container table {
        border-collapse: collapse;
        width: 100%;
        font-family: sans-serif;
        font-size: 16px;
    }

    .accountList-container th, td {
        border: 1px solid #ccc;
        padding: 8px 12px;
        text-align: left;
    }

    .accountList-container th {
        background-color: #f2f2f2;
        font-weight: bold;
    }

    .accountList-container tr:nth-child(even) {
        background-color: #fafafa;
    }

    .accountList-container tr:hover {
        background-color: #f0f8ff;
    }

    .accountList-container .buttons a,
    .accountList-container .buttons form button {
        margin-left: 10px;
        padding: 6px 12px;
        border: none;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9em;
    }

        .accountList-container button:hover {
            background-color: #005599;
        }


/* Mobile Styles */
@media (max-width: 1100px) {
    .hero-content h1 {
        font-weight: 500;
        letter-spacing: -1.4px;
        font-size: 1.5em;
        margin-bottom: 10px;
        color: #333;
    }

    /* Additional Features */
    .feature-text h2 {
        font-size: 1.4em;
        font-weight: 500;
        letter-spacing: -1.5px;
        color: #333;
        margin-bottom: 10px;
    }

    .feature-content {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

        .feature-content img {
            flex: 2; /* Image takes up most of the width */
            max-width: 60%;
            height: auto;
            border-radius: 8px;
            /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
        }

    .feature-video {
        flex: 2; /* Video takes up most of the width */
        max-width: 60%;
        height: auto;
        border-radius: 8px;
        /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
        object-fit: cover; /* Ensures the video covers its container neatly */
    }
}

@media (max-width: 768px) {
    nav ul {
        justify-content: space-between; /* Adjust spacing for smaller screens */
    }

        nav ul li {
            padding: 8px 10px; /* Reduce padding for smaller screens */
        }

            nav ul li a {
                font-size: 0.9em; /* Slightly smaller font size for better fit */
            }

    /* General container adjustments */
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
        width: 100%;
        max-width: none;
    }

    /* Header adjustments */
    header {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

        header .logo img {
            margin-bottom: 20px;
            margin-top: -4px;
            max-height: 40px; /* Smaller size for mobile */
        }

    .logo-nav {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    header .actions {
        justify-content: flex-end;
        order: 1;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
    }

    header .popup-button {
        display: none;
    }

    /* Hamburger Menu */
    .hamburger-menu {
        display: block; /* Show hamburger menu on small screens */
        color: #333;
        line-height: 1; /* Prevent unintended scaling differences */
        width: 1.5em; /* Add optional fixed width for consistency */
        height: 1.5em; /* Add optional fixed height */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu {
        display: none; /* Hide the nav menu by default */
        flex-direction: column; /* Stack links vertically */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 1000;
    }

        .nav-menu a {
            color: #333; /* Ensure text color is visible */
            text-decoration: none;
            padding: 10px;
            text-align: center;
            display: block;
        }

        .nav-menu.show {
            display: flex; /* Show menu when toggled */
        }

    /* Hero section adjustments */
    .hero {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

        .hero-content h1 {
            font-weight: 500;
            letter-spacing: -1.4px;
            font-size: 1.6em;
            margin-bottom: 10px;
            color: #333;
        }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    /* Features section */
    .features h2 {
        max-width: 100%;
        font-size: 1.4em;
        font-weight: 500;
        letter-spacing: -1.5px;
        margin-bottom: 30px;
        color: #333;
    }

    .features-columns {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
    }

    .feature-item {
        flex: 1;
        padding: 0px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: none;
        text-align: left;
    }

        .feature-item h3 {
            font-size: 1.2em;
            font-weight: 500;
            letter-spacing: -1.5px;
            margin-bottom: 5px;
            color: #333;
        }

    /* Additional features */
    .feature-content {
        flex-direction: column;
    }

        .feature-content img {
            max-width: 100%;
            order: 0;
        }

    .feature-video {
        max-width: 100%;
        order: 0;
    }

    .feature-text {
        order: 1;
        flex: 1; /* Allow the text to take up more space */
        min-width: 50%; /* Ensure text doesn't shrink too much on mobile */
        padding: 0px;
        text-align: left;
    }

        .feature-text h2 {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
        }

    .blog-header {
        flex-direction: column;
    }

    .blogBlock-content {
        flex-direction: column;
    }

    /* Upload page */
    .flex-container {
        flex-direction: column; /* Stack elements vertically on small screens */
        gap: 20px; /* Add space between stacked elements */
    }

    /* Footer */
    .footer-nav,
    .social-media {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .site-footer .container {
        gap: 20px;
    }

    .account-container {
        max-width: 90%; /* Ensure blocks don't exceed the screen width */
        margin: 10px auto; /* Center blocks horizontally */
        padding: 15px; /* Add padding inside the blocks */
        box-sizing: border-box; /* Include padding in the block's width */
        border: 1px solid #ddd; /* Add a light border for structure */
        border-radius: 8px; /* Slightly rounded corners */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for aesthetics */
    }

    .upload-section {
        width: 90%; /* Adjust width for smaller screens */
        padding: 15px; /* Reduce padding for smaller devices */
        margin: 20px auto; /* Ensure it's centered */
    }

    .upload-header {
        font-size: 1.2em; /* Slightly smaller header font */
    }

    .browse-button {
        width: 100%; /* Make button full-width */
        padding: 10px; /* Adjust padding */
    }

    .upload-container {
        flex: none; /* Prevent flexbox shrink */
        width: 100%; /* Ensure full-width usage */
    }
}
