  /* Basic CSS Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.container {
    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;
}

h2 {
    margin-bottom: 10px;
    color: #333;
}

.intro, .owner, .manager {
    margin-bottom: 30px;
}

/* Style for images */
img {
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
}

/* Navigation links */
nav {
    margin-bottom: 20px;
}

nav a {
    margin-right: 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Owners Section */
.box {
    display: flex;
    gap: 20px;
}

.box img {
    max-width: 50%;
    margin: auto;
}

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

