@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}

.main {
    min-height: 100vh;
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .image-container {
    padding: 10px;
}

.main .image-container .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.main .image-container .image img {
    width: 250px;
    align-items: center;
}

.main .image-container h1 {
    color: #00bcd4;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.main .image-container p {
    color: #324042;
    text-align: center;
    margin-bottom: 40px;
}

.main .input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 50px;
    background: rgb(202 253 255 / 50%);
}

.main .input .talk {
    background: transparent;
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.main .input .talk i {
    font-size: 20px;
    color: #aed0d0;
}

.main .input .content {
    color: #aed0d0;
    font-size: 15px;
    margin-right: 20px;
}

.help-section {
    margin-top: 20px;   /* Increase this value to push the 'Need help' box down */
    width: 100%;
    display: flex;
    justify-content: center;
}

.help-box {
    background: rgba(52, 6, 61, 0.9);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 30%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ba7a7a;
    position: relative;
}

.help-box h2 {
    font-size: 18px;
    color: #00bcd4;
}

.help-box p {
    font-size: 16px;
    color: #a30808;
}

.questions-list {
    list-style: none;
    padding: 0;
}

.questions-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #696a6a;
}

.see-more {
    background: transparent;
    border: none;
    color: #00bcd4;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.see-more:hover {
    text-decoration: underline;
}

.more-questions {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.more-questions li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #696a6a;
}

.more-questions.show {
    max-height: 500px; /* Adjust based on content */
    overflow-y: auto;
}









































