body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #e0f7fa;
}

h1, h2, h3, h4, h5, h6 {
    color: #00796b;
}

a {
    color: #00695c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button, input[type="submit"], input[type="reset"] {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover, input[type="reset"]:hover {
    background-color: #004d40;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.froge img {
    max-width: 100%;
    height: auto;
}

.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #004d40;
    color: white;
}

.footer a {
    color: #b2dfdb;
}

.form-section {
    margin: 20px 0;
}

.form-section input[type="text"],
.form-section input[type="email"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-section textarea {
    width: 100%;
    height: 100px;
    padding: 8px;
    margin: 5px 0 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}