body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#mobile-nav-toggle {
    display: none; /* Hidden on large screens */
    background-color: #333;
    color: white;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000; /* High z-index value */
}

#sidebar {
    background-color: #333;
    color: white;
    width: 200px;
    height: 100%;
    position: fixed;
    left: 0; /* Visible by default on large screens */
    top: 0;
    overflow-y: auto;
    padding-top: 20px;
    transition: left 0.3s;
    z-index: 2; /* Lower z-index value */
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#sidebar ul li a {
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    display: block;
}

#sidebar ul li a:hover {
    background-color: #111;
}

.content {
    margin-left: 200px; /* Space equal to the width of the menu */
    padding: 20px;
    padding-top: 20px;
    transition: margin-left 0.3s;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    clear: both;
}

@media screen and (max-width: 600px) {
    #mobile-nav-toggle {
        display: block; /* Display on mobile */
    }

    #sidebar {
        width: 200px;
        position: fixed;
        left: -200px; /* Hidden on mobile */
        top: 0;
        height: 100%;
        transition: left 0.3s;
    }

    #sidebar.active {
        left: 0; /* Visible when opened on mobile */
        z-index: 1000; /* High z-index value to not cover the content */
    }

    .content {
        margin-left: 0; /* Align content to left when menu is closed on mobile */
        padding-top: 60px; /* Space for the menu button on mobile */
    }
}

img {
    max-width: 100%;
    height: auto;
}
h2 {
    background-color: #ccc;
    color: #333;
    padding: 10px;
}
p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
    padding: 10px;
    border-left: 4px solid #ccc;  /* Prominent left border */
    margin: 10px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /* Light shadow effect */
}
#sidebar ul li a::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: white;
    margin-right: 10px;
    border-radius: 2px; /* Slightly rounded corners */
}
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;

}

.form-group textarea {
    height: 100px;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;

    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

