 /* Basic styles for the body */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container for the whole page */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px 0;
}

header a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-size: x-large;
}

/* Container for the entire page */
.menu-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Top navigation links */
.nav-links {
    list-style-type: none;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
}

/* Section headers */
.section-heading {
    font-weight: bold;
    margin: 20px 0;
}

/* Placeholder content styling */
.content {
    margin-bottom: 20px;
}

/* Placeholder image styling */
.item {
    padding: 10px;
    border: 1px solid #ccc;
}

/* Styling for the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Container to hold all footer content */
.footer-container {
    width: 100%;
    margin: 0 auto;
}

/* Styling for the logo section */
.logo-section {
    margin-bottom: 10px;
}
.logo-section img {
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Styling for the social-media-section section */
.social-media-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media {
    width: 60px;
    height: 60px;
    padding: 10px;
    background-color: #e1e1e1;
    font-size: 14px;
    color: #333;
}
