/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#Benefits {
    padding-top: 70px;
}

#Concerns {
    padding-top: 70px;
}

#AIChat {
    padding-top: 70px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #aaa;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: white;
    text-align: left;
    padding-top: 110px;
    margin-left: 10px;
    margin-right: 10px;

}

.hero h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 20px;
}

/* Product Section */
.product {
    text-align: left;
    max-width: 2000px;
    margin-left: 10px;
    margin-right: 10px;
}

.product img {
    width: 99%;
    border-radius: 8px;
    margin: 15px 0;
}

.product h2 {
    font-size: 1.5em;
    color: #333;
}

.product p {
    color: #555;
    font-size: 1.5em;
}

.footer {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}


/* Chat Feature */
.chat-container {
    width: 95%;
    max-width: 1500px; /* Adjust the width as needed */
    height: 500px;
    margin: 20px auto; /* Center the chat container */
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background-color: black;
    color: white;
    font-size: 1.5em;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.chat-messages {
    flex: 1;
    font-size: 1.5em;
    padding: 10px;
    overflow-y: auto;
    max-height: 600px; /* Adjust height as needed */
    border-bottom: 1px solid #ccc;
}

.chat-input {
    display: flex;
    font-size: 1.5em;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0 0 0 8px;
    font-size: 1em;
}

.chat-input button {
    padding: 10px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 0 0 8px 0;
    cursor: pointer;
    font-size: 1em;
}

.chat-input button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.gform-container {
    width: 100%;
    max-width: 1700px;
    height: 1000px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centres content vertically */
    align-items: center;    /* Centres content horizontally */
}

.gform-container iframe {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    height: 90%;
    border: none;     /* Optional: Removes the iframe border */
}



/* Responsive Navbar Adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .navbar ul {
        flex-direction: column; /* Stack the menu items vertically */
        width: 100%; /* Ensure it takes the full width */
    }

    .navbar ul li {
        margin: 10px 0; /* Add spacing between items */
    }

    .navbar ul li a {
        font-size: 1em; /* Reduce font size for smaller screens */
    }
}

/* Prevent overflow */
.navbar ul {
    overflow: hidden; /* Ensure no content overflows */
}

.navbar ul li:last-child {
    padding-bottom: 10px; /* Ensure the last item is visible */
}

/* Adjust the Google Form container */
.gform-container {
    width: 90%; /* Ensure it aligns well with other content */
    max-width: 90%; /* Limit it to prevent overflowing */
    margin: 10px auto; /* Center it with even spacing on smaller screens */
}

.audio-section{
    text-align: left;
    max-width: 2000px;
    margin-left: 10px;
    margin-right: 10px;
}