        h1 {
    font-size: 30px; /* Larger font size for headings */
    color: #4a5568; /* Example color; adjust based on your design */
    margin-bottom: 10px; /* Spacing below the heading */
}
      
      h2 {
    font-size: 20px; /* Larger font size for headings */
    color: #4a5568; /* Example color; adjust based on your design */
    margin-bottom: 20px; /* Spacing below the heading */
}
        
        body, html {
            text-align: center;
            height: 100%;
display: flex;
flex-direction: column;

            margin: 0;
            padding: 20px 5px;
            font-family: 'Open Sans', sans-serif;
            background-color: #f0f4f8;
            color: #333;
        }
        
        .content-wrap {
    flex: 1; /* This makes the content area flexible to fill the space before the footer */
}


    #optionsContainer {
        text-align: center;
        max-width: 500px;
        margin: 20px auto;
        padding: 1px;
        border-radius: 8px;
        width: 80%;
    }

    #optionsContainer > div, #allAtOnceButton {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #optionsContainer button, #allAtOnceButton {
        flex: 1;
        margin: 2px;
        padding: 10px 0;
        background-color: #e8edff; /* Lighter shade of the main button color */

        color: black;
        font-weight: 600;
        border: 1px solid black; /* Ensuring all buttons have a thick black border */
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    #allAtOnceButton {
        width: calc(100% - 4px);
        margin-top: 10px;
        padding: 15px 0;
    }

    #optionsContainer button:hover, #allAtOnceButton:hover {
background-color: #8f9ce8; /* Slightly darker shade on hover */

    }

        
        #urlInput {
            width: 90%;
            padding: 10px;
            font-size: 16px;
            margin: 10px auto;
            display: block;
            border: 2px solid #a0b1c5;
            border-radius: 5px;
            background-color: #fff;
            max-width: 800px;
        }
        
        #urlInput::placeholder {
    text-align: center;
    color: #a0a0a0; /* Optional: Adjusts the placeholder text color for better visibility */
    
}
        
        .buttonContainer {
            width: 90%;
            max-width: 600px;
            margin: 0px 10px;
            display: inline-block;
            text-align: center;
        }
        button {
            width: 90%;
            border-radius: 5px;
            padding: 10px 10px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        #mainButton {
            
            padding: 12px 50px;
            font-size: 20px;
            font-weight: 700;
        
        background-color: #4b3b8f;

        color: white;
        border: 3px solid black; /* Ensuring all buttons have a thick black border */
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s;
        }
        
        #openAllSites {
            background-color: #4db6ac;
            font-size: 16px;

        }
        
        .smallButton {
            background-color: #4db6ac;
        }
        button:hover {
            filter: brightness(90%);
        }
        .serviceName {
            font-size: 12px;
            color: #607d8b;
            display: block;
        }
        .divider {
            border-bottom: 2px solid #a0b1c5;
            width: 80%;
            margin: 20px auto;
        }
        #optionsRow {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        p {
            width: 80%;
            margin: auto;
            font-size: 14px;
            line-height: 1.4;
            color: #4a5568;
        }

.top-image {
    display: block;
    margin: 0 auto; /* Center the image */
    max-width: 20%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

 /* FAQ Section Styles */
.faq-container {
    max-width: 800px; /* Set the maximum width for the FAQ section */
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.faq-item {
    border: 2px solid #a0b1c5; /* Solid line border around the whole item */
    border-radius: 8px; /* Beveled corners for the container */
    margin: 10px 0;
    overflow: hidden; /* Keeps the border-radius effect on children */
}

.faq-question {
    background-color: #f0f4f8;
    padding: 10px;
    margin: 0; /* Remove margin to avoid spacing issues inside the container */
    cursor: pointer;
}

.faq-answer {
    display: none; /* Hide answers initially */
    padding: 10px;
    background-color: #fff;
    margin: 0; /* Ensure the answer fits snugly in the container */
}

.faq-question:hover {
    background-color: #e2e8f0; /* Lighter shade for hover effect */
}

#dynamicDomainText {
    font-size: 12px; /* Set font size */
    font-weight: bold; /* Make text bold */
    display: inline-block; /* Allows the background color to fit the text */
    margin: 0px 0; /* Optional: Adds some space around the element */
}

footerfooter {
    font-size: 8px;
    width: 100%;
    padding: 20px 0;
    background-color: #f0f4f8;
    color: #333;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left, .footer-right a {
    text-decoration: none;
    color: #333;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-right a:not(:last-child):after {
    content: " | ";
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        margin-top: 10px;
    }
    .footer-right a:not(:last-child):after {
        content: ""; /* Removes '|' symbol on smaller screens */
    }
}

.divider {
    border-bottom: 2px solid #d1d5db; /* Lighter shade of gray for the dividing line */
    width: 50%; /* Reduced width for a narrower line */
    max-width: 600px; /* Set the maximum width for the FAQ section */
    margin: 20px auto;
}

/* White background section */
.section-white {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for contrast */
    margin-bottom: 20px;
}

/* Main background section */
.section-main-background {
    background-color: #f0f4f8; /* Same as the main background color */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Other specific background colors */
.section-alt-background {
    background-color: #e0e7ef; /* Slightly darker or lighter shade for variation */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#popup {
    width: 300px;
    height: 100px;
    position: fixed;
    bottom: 20px; /* Keep it at the top of the page, adjust as needed */
    right: -320px; /* Start hidden off the screen */
    background-color: #ffeb3b; /* Strong yellow */
    color: black;
    border: 4px solid black; /* Thicker border */
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3); /* Drop shadow */
    cursor: pointer;
    transition: right 0.5s ease; /* Smooth slide-in effect */
    z-index: 1000;
}

#popup p {
    color: black; /* Text color */
    padding: 30px; /* Increase touchable area */
    margin: 0;
    font-weight: 400;
    text-align: center; /* Center-align text */
    cursor: pointer; /* Indicate interactivity */
    
}
 
#popup span#close-popup {
    position: absolute;
    top: 0px; /* Move closer to the top */
    right: 8px; /* Move closer to the right */
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    color: black;
}

#popup span#close-popup:hover {
    color: darkred; /* Change color on hover */
}

.popup-bold-text {
    font-weight: 900;
}
    
