body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e8f5e9;
    color: #1b5e20;
    display: flex;
}

/* SIDEBAR FIXED */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 120%;
    background-color: #1b5e20;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* LOGO */
.logo {
    color: white;
    font-size: 24px;
    margin-bottom: 5px;
}

/* MENU LINKS */
.sidebar nav a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px;
    width: 80%;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT (FINAL FIX) */
.sidebar nav a:hover {
    color: red;
    background-color: #ffffff;
    text-decoration: underline;
    border-radius: 5px;
}

/* REMOVE OLD CONFLICT */
/* nav a:hover {
    color: #a5d6a7;
} */

.main-content {
    margin-left: 220px;
    padding: 20px;
    width: calc(100% - 220px);
}

.section {
    margin-bottom: 50px;
}

/* BOXES */
.animated-boxes {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.box {
    width: 30%;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.5s ease;
}

/* IMAGE */
.box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* IMAGE GLOW EFFECT */
.box img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.8);
}

.box p {
    text-align: center;
    margin-top: 10px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
.contact-form button {
    padding: 10px;
    background-color: #1b5e20;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #4caf50;
}