 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
        }
        header {
            /*background-color: #333;*/
            color: #fff;
            background-image: url(../images/fall_header_bg.jpg);
            padding: 15px 0;
            text-align: center;
        }
       
		/* Navbar styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Aligns items vertically in the center */
    padding: 10px;
    background-color: #444;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center; /* Ensures the dropdown aligns with other links */
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
}

nav a:hover {
    background-color: #666;
}

/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
}

/* Dropdown for Events */
.dropdown {
    position: relative;
    display: flex;
    align-items: center; /* Ensure "Events" is vertically centered */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Place the dropdown below the Events tab */
    left: 0;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #666;
}

/* Show dropdown content when clicked */
.dropdown.show .dropdown-content {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #444;
    }

    .nav-links a {
        text-align: center;
        padding: 10px;
        width: 100%;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }
}
        main {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }
        section {
            margin-bottom: 30px;
        }
        h2 {
            margin-bottom: 15px;
            color: #333;
        }
        .listing, .garage-sale, .help-wanted, .events, .user-recommends {
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #f9f9f9;
            margin-bottom: 20px;
        }
        .business-form {
            padding: 20px;
            border: 2px solid #444;
            background-color: #e9e9e9;
            border-radius: 8px;
        }
        .business-form textarea {
            width: 100%;
            height: 100px;
            resize: none;
            margin-bottom: 20px;
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
        }
		.green-button {
            background-color: #28a745;
            color: white;
            padding: 12px 25px;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 16px;
            font-family: Arial, sans-serif;
            display: inline-block;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .green-button:hover {
            background-color: #218838;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
		
	 /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            width: 300px;
            text-align: center;
        }

        .close {
            color: red;
            float: right;
            font-size: 28px;
            cursor: pointer;
        }

    
		form {
            max-width: 600px;
            margin: 0 auto;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
        }
        
        input[type="checkbox"] {
            margin-right: 5px; /* Adds space between checkbox and the label text */
            vertical-align: middle; /* Aligns the checkbox with the text */
}
        button {
            background-color: #28a745;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #218838;
        }

        .instructions {
            font-size: 0.9em;
            color: #555;
        }
        
    </style>