//#########################################

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

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background-color: #405890;
    color: #fff;
    text-align: center;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #3e8e41 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    display: inline;
    padding: 0 20px 0 20px;
}

header h1 {
    float: left;
    font-size: 24px;
    margin-top: 0;
}

header p {
    font-size: 14px;
    margin-top: 5px;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

section {
    padding: 20px 0;
}

h2 {
    color: #405890;
    margin-top: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #405890;
}

section p {
    font-size: 18px;
    margin-bottom: 10px;
}

section ul {
    list-style-type: square;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    margin-top: 10px;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #45a049;
}

footer p {
    margin: 0;
}

footer {
    background: #333;
    background-color: #333;
    color: white;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}


