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

/* Main content area */
.hero {
    background-color: #f4f4f4;
    padding: 40px;
    text-align: center;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

/* Section styles */
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.text {
    flex: 1;
    padding-right: 20px;
}

.image {
    flex: 1;
    max-width: 100%;
    height: auto;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
}

img {
    background-size: contain;
}

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

