/* ===== GENERAL PAGE ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* ===== HEADER ===== */
header {
    background-color: #2f5e2f;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header p {
    margin-top: 10px;
    font-size: 16px;
}

/* ===== CONTACT INFO LINE ===== */
header a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}

/* ===== FORM CONTAINER ===== */
section {
    max-width: 750px;
    margin: 40px auto;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===== FORM ===== */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 18px;
    font-weight: bold;
    font-size: 14px;
}

input,
textarea {
    margin-top: 6px;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    border: 1px solid #2f5e2f;
    outline: none;
}

/* ===== ADDRESS ROW (City, State, ZIP inline) ===== */
#city, #state, #zip {
    width: 32%;
    display: inline-block;
    margin-right: 2%;
}

#zip {
    margin-right: 0;
}

/* ===== BUTTON ===== */
button {
    margin-top: 25px;
    padding: 14px;
    background: #2f5e2f;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background: #244a24;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 25px;
    font-size: 14px;
    background: #eaeaea;
    margin-top: 40px;
}
/* ===== Service Page Basic Styling ===== */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}