 /* Basic CSS Reset */
 body, h2, h4, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Styling for the main container */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

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

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

/* Heading styles */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

h4 {
    margin-top: 20px;
}

/* Styling for image sections */
.image-section {
    border: 1px solid #ccc;
    margin-bottom: 40px;
    padding: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* Placeholder for images */
.image {
    width: 100%;
    height: 200px;
    background-color: #f4f4f4;
}

/* Text placeholder */
.text {
    margin: 20px 0;
}

/* 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;
}
