/* privacy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    margin: 0;
}

h1, h2 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
    margin: 20px 0;
}

p {
    margin-bottom: 10px;
    font-size: 1em;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    p, ul li {
        font-size: 0.95em;
    }
}


/* chat */
.chatbody {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.chat-container {
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    flex-direction: column;
}
.chat-header {
    padding: 15px;
    background-color: #007bff;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
}
.chat-messages {
    padding: 15px;
    overflow-y: auto;
    flex: 1;
    max-height: 300px;
    border-bottom: 1px solid #e0e0e0;
}
.message {
    margin-bottom: 10px;
}
.message.user {
    text-align: right;
}
.message.user .message-text {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}
.message.bot .message-text {
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}
.chat-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}

.chat-input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #444;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}
.chat-input:focus {
    outline: none;
    background-color: #555;
}
.send-button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    margin-left: 10px;
    cursor: pointer;
}
.send-button:hover {
    background-color: #0056b3;
}