/* General Reset */
body, h1, h2, p, form, label, input, select, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #ff6f61;
    color: #fff;
    text-align: center;
    padding: 20px;
}

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

.intro, .form-container, .recommendations, .testimonials {
    margin-bottom: 30px;
}

.intro-image {
    width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #ff6f61;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #e85a4f;
}

.recommendation {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recommendation img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 10px;
}

blockquote {
    background-color: #fff;
    border-left: 4px solid #ff6f61;
    padding: 10px 20px;
    margin: 10px 0;
    font-style: italic;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
