        /* Body Background */
        body {
	        background-color: #ccc; /* Grey exterior background */
            margin: 0;
            padding: 20px;
        }

        /* Page Wrapper */
        .page-container {
            background-color: #fff;
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }

/* Navigation Bar */
/* Full-Width Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 2px solid red;
	display: flex;
	align-items: center;
}

.navbar .container-fluid {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Hide full nav on small screens */
@media (max-width: 991px) {
    .d-lg-flex {
        display: flex;
        justify-content: space-around;
        width: 100%;
    }
}

/* Navbar Links */
.navbar .nav-link {
    text-align: center;
    font-weight: bold;
    color: red;
    padding: 15px 20px;
    border-radius: 0;
    display: flex;
    background-color: red;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
	align-items: center;
	justify-content: center;
    flex: 1;
	height: 50px;
}

/* Hover Effect */
.navbar .nav-link:hover {
    background-color: darkred;
    color: white;
}

/* Custom Styling for ZEDUP (Home Link) */
.navbar .nav-home {
    background-color: darkred !important; /* Ensure it overrides Bootstrap */
    color: red !important;
    font-weight: bolder;
	font-size: 1.3em;
	height: 50px;
	justify-content: center;
	display: flex;
	border-right: 5px solid gray;
}

/* Hover Effect for ZEDUP */
.navbar .nav-home:hover {
    background-color: gray !important; /* Ensure it overrides Bootstrap */
    color: white !important;
}

.active-link {
    border-bottom: 10px solid black !important;
	display: inline-block !important;
}
/* Style Hamburger Icon */
.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: red;
    margin-bottom: 10px;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="red" stroke-width="3" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}



        /* Card Styling */
        .custom-card {
            margin-bottom: 20px;
            border: 1px solid black;
            background-color: white;
        }

        .custom-card .card-header {
            background-color: black;
			font-size: 1.2em;
            color: red;
            font-weight: bolder;
        }

        .custom-card .card-body {
            color: black;
        }

		.btn-more {
		    display: inline-block;
		    background-color: red;
		    color: white;
		    font-weight: bold;
		    text-transform: uppercase;
		    text-align: center;
		    padding: 10px 20px;
		    border-radius: 5px;
		    text-decoration: none;
		    transition: background 0.3s ease;
		}

		.btn-more:hover {
		    background-color: darkred;
		    color: white;
		}
