/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling for the body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* Navigation styles */
nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Header styles */
h1 {
    color: #007BFF;
}

/* Section styles */
section {
    margin: 30px 0;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Featured products section */
.featured-products {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* About us section */
.company-history, .team {
    margin-bottom: 20px;
}

/* Product details section */
.product-categories, .product-details {
    margin-bottom: 20px;
}

/* Partner section */
.partner-relationships, .case-studies {
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 768px) {
    nav li {
        display: block;
        margin: 10px 0;
    }
}
