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

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #333;
}

.header .logo-contact {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}

.header .logo {
    height: 28px;
    margin: 10px 0;
}

.header .contact {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header .contact .phone-icon {
    height: 26px;
    margin-right: 10px;
}

/* Navbar styles */
.navbar {
    overflow: hidden;
    background-color: #00008b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .menu-items {
    display: flex;
}

.navbar .menu-items a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.navbar .menu-items a:hover {
    background-color: #ddd;
    color: black;
}

.navbar .icon {
    display: none;
}

@media screen and (max-width: 800px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
    }

    .header .logo {
        height: 14px;
        margin: 0 5px;
    }

    .header .contact {
        font-size: 14px;
    }

    .header .contact .phone-icon {
        height: 14px;
        margin-right: 5px;
    }

    .navbar {
        background-color: transparent;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }

    .navbar .icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: #333;
        margin-left: 10px;
    }

    .navbar .menu-items {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }

    .navbar.responsive .menu-items {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        background-color: #f8f8f8;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        padding: 10px;
    }

    .navbar.responsive .menu-items a {
        display: block;
        text-align: left;
        color: blue !important;
        font-size: 16px;
        padding: 10px 20px;
        background-color: #f8f8f8;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .navbar.responsive .menu-items a:hover {
        background-color: #ddd;
        color: black;
    }

    .navbar.responsive .menu-items a:last-child {
        border-bottom: none;
    }
}

/* Slider styles */
.slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ddd;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

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

/* Company Description */
.text-frame {
    width: 98%; /* Make the text frame 98% of the screen width */
    padding: 20px;
    margin: 0 auto;
    max-width: 1400px; /* Ensure the maximum width is 1400px */
    padding-left: 20px; /* Add space to the left */
    padding-right: 20px; /* Add space to the right */
}

.company-description {
    padding: 20px;
    background-color: #f9f9f9; /* Background color for the text frame */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow for better separation */
    font-size: 20px; /* Larger font size */
    line-height: 1.8; /* Adjust line height for better readability */
}

.company-description p,
.company-description ul {
    font-size: 20px; /* Larger font size */
    margin-bottom: 10px;
}

.company-description ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Footer styles */
.footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

.footer-content a {
    color: #333;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.product-details {

}
