body, h1, h2, h3, p, ul, li, button {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.header {
    font-family: 'Montserrat', sans-serif;
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.header div h1 {
    text-transform: uppercase;
}

.footer {
    font-family: 'Roboto', sans-serif;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    clear: both; 
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.welcome-message {
    text-align: right;
}

.quotation {
    font-style: italic;
    color: #555;
}

.menu-bar {
    font-family: 'Montserrat', sans-serif;
    background-color: #333;
    padding: 0.5em;
    position: relative;
    width: 100%; 
}

.menu-bar ul {
    list-style-type: none;
    display: flex; 
    justify-content: space-around; 
}

.menu-bar li {
    display: inline;
    margin-right: 20px;
    position: relative;
}

.menu-bar a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.menu-bar ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #555;
    padding: 10px;
    width: 200px;
}

.menu-bar li:hover > ul {
    display: block;
}

.menu-bar ul ul li {
    display: block;
    margin: 10px 0;
}

.business-overview {
    flex: 1;
    max-width: calc(50% - 10px);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.business-overview h1 {
    margin: 10;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}

.business-overview h2 {
    margin-bottom: 10;
    padding: 0;
    font-family: 'Dancing Script', sans-serif;
    text-transform: lowercase;
    color: #333;
    text-align: center;
}

.business-overview p {
    font-family: 'Nunito', sans-serif;
    text-align: left;
    color: #555;
}

.product-image {
    flex: 1;
    box-sizing: border-box;
    margin-top: 10em;
    text-align: center;
    max-width: calc(50% - 10px);
    width: 200px; 
    height: 200px;
    overflow: hidden; 
    position: relative;
}

.product-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.label {
    display: block;
    text-align: center;
    margin-top: 5px;
    color: #555;
}

.image-slideshow {
    max-width: 600px;
    position: relative;
    margin: auto;
}

.fade {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade.active {
    display: block;
    opacity: 1;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}
