body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    background-color: #13373e;
    color: white;
    z-index: 1000;
    height: 150px; /* Change the value to your desired height */
}

/* Add this style to adjust the height of the header logo */
.header-logo {
    max-height: 100%; /* Ensure the logo doesn't exceed the header height */
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.product-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 10px;
    width: calc(33% - 20px);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.product-card img {
    width: 100%;
}

.product-card button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 10px auto;
    font-size: 16px;
    cursor: pointer;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
    width: 100%;
}

.slideshow-container img {
    width: 100%;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
}

.close-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.view-cart-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px; /* Adjust the right position */
}


.about-section {
    background-color: #f4f4f4;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center vertically */
}

.about-section {
    overflow: hidden; /* Clear floats */
}

.profile-picture-container {
    float: left;
    width: 20%; /* Adjust the width as needed */
}

.about-content {
    float: left;
    width: 40%; /* Adjust the width as needed */
}

.additional-info {
    float: left;
    width: 40%; /* Adjust the width as needed */
}


.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px; /* Add margin to the right to separate from text */
}

* {
    box-sizing: border-box;
}

.slideshow {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

#notification {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#notification.show {
    opacity: 1;
}

header {
    position: relative;
    z-index: 1;
}

.product-card button,
.view-cart-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 10px auto;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px; /* Add this line for rounded corners */
}

.cart-modal,
.cart-content {
    border-radius: 10px; /* Add this line for rounded corners */
}

.view-cart-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 10px; /* Add this line for rounded corners */
}


