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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #EEE5E8; /* Lavender blush */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

#main-container {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

#logo-title {
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
}

#logo-title h1 {
    font-size: 2em;
    color: #273E5A; /* Indigo dye */
    margin-bottom: 10px;
}

#logo-title p {
    color: #75C7A1; /* Mint */
}

section {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

#chatbot h2,
#contacto h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #E782EA; /* Violet */
}

.inline-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inline-form label {
    margin-right: 10px;
    font-weight: bold;
    color: #273E5A; /* Indigo dye */
}

.inline-form input[type="email"] {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #EEE5E8; /* Lavender blush */
}

.inline-form button {
    padding: 10px 20px;
    background: #ED7B2F; /* Pumpkin */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.inline-form button:hover {
    background: #E782EA; /* Violet */
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #273E5A; /* Indigo dye */
    color: #fff;
    margin-top: 30px;
    border-radius: 10px;
}

/* Added CSS to fix the alignment of list items */
ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #273E5A; /* Indigo dye */
    font-size: 1.2em;
    line-height: 1;
}
