
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}
.header {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px 10px;
    position: relative;
}
.home-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 28px;
}
.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.form-section {
    background: white;
    padding: 20px;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}
form input, form textarea, form button, form select {
    padding: 10px;
    font-size: 16px;
}
form textarea {
    resize: vertical;
    min-height: 100px;
}
form button {
    background-color: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: #27632a;
}
.how-it-works, .services {
    padding: 20px;
    background: #fff;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}
.icon-img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
footer {
    text-align: center;
    padding: 15px;
    background: #2e7d32;
    color: white;
}

textarea {
    font-family: inherit;
}
