body {
    padding-top: 80px;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f4ef;
}

/* HEADER */
header {
    background-color: #254117;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

header img {
    width: 8rem;
    height: auto;
}

/* NAVIGATION */
#NavBar {
    background-color: #2E6B2E;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#NavBar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

#NavBar a {
    text-decoration: none;
    color: #D1E8B2;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

#NavBar a:hover {
    color: #A9D18E;
}

/* HOME SECTION */
#home {
    background-color: #7BB661;
    text-align: center;
    padding: 12rem 1rem;
    font-weight: bold;
    font-size: 5vh;
    font-style: italic;
    color: #2B3A12;
}

#home em {
    color: #E07B24;
    text-decoration: underline;
}

/* ABOUT SECTION */
#about {
    padding: 10rem 1.5rem;
    background-color: #364E27;
    font-size: 1.75rem;
}

#about .LuckyShrub {
    display: flex;
    justify-content: center;
    color: #F0F4E6;
    margin-bottom: 2rem;
}

#about .LuckyShrub p::first-letter {
    font-size: 4.5rem;
    font-weight: bold;
    color: #7BB661;
    font-style: italic;
}

article {
    display: flex;
    justify-content: center;
    color: #F0F4E6;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* SERVICES SECTION */
#services {
    padding: 10rem 1.5rem;
    text-align: center;
    background-color: #ffffff;
}

#services div h2 {
    font-size: 2.5rem;
    color: #A9D18E;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

#services div h2:hover {
    transform: scale(1.1);
}

.Offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background-color: #E9F1DB;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(123, 182, 97, 0.3);
}

.Offers > div {
    max-width: 300px;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#services img {
    width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
    transition: box-shadow 0.4s ease;
}

#services img:hover {
    box-shadow: 0 0 20px 5px #a9d18e;
}

/* CONTACT SECTION */
#contact {
    background-color: #f5f5f5;
    padding: 6rem 1.5rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #007B55;
    font-size: 2rem;
}

.contact-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: #444;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #007B55;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #005d40;
}

/* FOOTER */
.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
    background-color: #213913;
    color: #F0F4E6;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.4s ease-in-out;
}

.footer-left:hover {
    box-shadow: 0 0 20px 5px #7BB661;
}

.logo img {
    height: 50px;
    transition: box-shadow 0.4s ease-in-out;
}

.logo img:hover {
    box-shadow: 0 0 20px 5px #7BB661;
}

.contact {
    text-align: right;
    transition: box-shadow 0.4s ease-in-out;
}

.contact:hover {
    box-shadow: 0 0 20px 5px #7BB661;
}
