/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Main container to push footer to the bottom */
.main-container {
    flex: 1;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #88b8e9;
    height: 100px;
}

.logo {
    height: 80px;
    width: auto;
}
.landscape-pictures {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: f4f6f8;
}

.landscape {
        width: 90%;
        max-height: 200px; /* Adjust the max height for mobile view */
        margin-bottom: 10px;
    }
    @media (max-width: 768px) {
        header {
            height: 80px;
        }
    
        .logo {
            height: 60px;
        }
    
        .landscape-pictures {
            flex-direction: column;
            align-items: center;
        }
    
        .landscape {
            width: 100%;
            max-height: 200px;
        }
    }
    
    @media (max-width: 480px) {
        header {
            height: 60px;
        }
    
        .logo {
            height: 50px;
        }
    
        .landscape {
            width: 100%;
            max-height: 150px;
        }
    }

h1, h2 {
    margin: 0;
    color: white;
}

/* Navigation bar styles */
.navbar {
    display: flex;
    align-items: center;
    margin-right: 180px;
    background-color: rgba(255, 255, 255, 0.5); /* Transparent white background */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline-block;
    margin-left: 20px;
}

.navbar ul li:first-child {
    margin-left: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: bold;
}

.navbar ul li a:hover {
    color: #f4f6f8;
}

/* Main styles */
main {
    padding: 20px;
}

.home-section {
    background-color: #eef5f4;
    padding: 50px;
    margin-top: 10px;
    flex-direction: column;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.354);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.home-section .content {
    font-size: 1.5em; /* Change the font size */
}


.services-section {
    background-color: #eef5f4;
    padding: 50px;
    margin-top: 10px;
    flex-direction: column;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(57, 56, 56, 0.582);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.services-section h3 {
    color: rgb(12, 12, 12);
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.5em; /* Increase the font size */
}


.services-list {
    display: flex;
    justify-content: space-between;
}

.service-column {
    width: 48%;
}

.services-list ul {
    padding: 0;
}

.services-list ul li {
    margin-bottom: 15px;
}

.products-section {
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: #eef5f4;
    box-shadow: 0 4px 8px rgba(57, 56, 56, 0.582);
}

.products-section {
    margin-bottom: 10px;
}

.products-section h2,
.products-section h3,
.products-section p {
    color: black;
    text-align: center;
}

.product-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
}

.product {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product img {
    max-width: 100%; /* Set maximum width to prevent overflow */
    height: auto; /* Allow the height to adjust proportionally */
    max-height: 200px; /* Set a maximum height to control size */
    width: auto; /* Allow the width to adjust proportionally */
    margin-bottom: 10px;
}


.payment {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eef5f4;
    margin: 20px auto;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(57, 56, 56, 0.582);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.payment h2 {
    color: black;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}


.instructions {
    margin-bottom: 20px;
}

.instructions p {
    margin-bottom: 10px;
    font-size: 0.9em;
    text-align: center;
}

#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eef5f4;
    flex-direction: column;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(57, 56, 56, 0.582);
    box-sizing: border-box;
}
.contact-box {
    text-align: center; /* Center-align the content within the contact box */
}

.contact-box .info {
    display: inline-block; /* Display anchor tags as inline-block */
    margin-right: 10px; /* Add space between phone numbers */
}



#contact h2 {
    margin-top: 5px;
    color: black;
}

#contact h3 {
    margin-top: 0px;
    color: black;
    text-align: center;
}

  
/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
}

@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #f8f9fac5;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(29, 29, 29, 0.1);
        width: 200px;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}
