/* RESET */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(#e9f9ec, #c8f0d0); /* light green gradient */
    color: #222;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* HEADER */

.site-header {
    background: #000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NAVIGATION */

.nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #00cc33;
}

/* LOGO */

.logo {
    height: 60px;
}

/* CONTACT SECTION */

.contact-form-section {
    padding: 60px 0;
}

/* FORM BOX */

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TITLE */

h2 {
    margin-top: 0;
}

.lead {
    margin-bottom: 25px;
    color: #444;
}

/* LABELS */

.contact-form label {
    display: block;
    margin-bottom: 18px;
    font-weight: 500;
}

/* INPUT FIELDS */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.2s;
}

/* FOCUS EFFECT */

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00cc33;
    box-shadow: 0 0 5px rgba(0,204,51,0.4);
}

/* BUTTON */

.btn {
    background: #00cc33;
    color: white;
    padding: 12px 26px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #009926;
}

/* FOOTER */

.site-footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-contact {
    margin-top: 8px;
    font-size: 14px;
}