
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f9f4;
}

header {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px;
}

.services, .chat-section {
    padding: 20px;
    margin: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

ul {
    line-height: 1.8;
}

#chatBox {
    height: 200px;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: scroll;
    margin-bottom: 10px;
    background: #f9fff9;
}

input {
    width: 70%;
    padding: 10px;
}

button {
    padding: 10px 15px;
    background: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #1b5e20;
}

footer {
    text-align: center;
    padding: 10px;
    background: #2e7d32;
    color: white;
}
