body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6200ee;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3700b3;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

img {

    width: 100%;

    height: auto;

}

.input-box {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    resize: none;
    overflow: hidden;
    min-height: 100px;
}

.send-button {
    background-color: #6200ee;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #3700b3;
}

.response-box {
    background-color: #f9f9f9;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 1rem;
    color: #333;
}

.section {
    margin-bottom: 3rem;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
}