body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    max-height: 50px;
    display: inline;
    padding-right: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container span {
    display: inline;
    font-weight: bold;
}

.nav a {
    margin-right: 5rem;
    font-weight: bold;
    color: #333;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: left;
    background: url('hero-image.webp') no-repeat center center/cover;
    color: white;
    padding: 60px 20px;
    text-align: left;
    position: relative;
}

.hero-content {
    max-width: 512px;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: white;
    color: rgb(180,92,61);
    border-radius: 5px;
    border-color: white;
    border-width: 1px;
    border-style: solid;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.content-divider {
    background-color: rgb(242,242,242);
    margin: 20px 20px;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.content-divider * {
    margin: 0;
}

.content-divider h2 {
    display: inline;
    margin-right: 20px;
}

.content-divider p {
    max-width: 1920px;
    display: inline;
}

.filters {
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filters h2 {
    text-align: center;
    margin-bottom: 30px;
}

.filter-info {
    color: white;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    align-items: start;
}

.filter-product-type {
    margin: 0;
    margin-bottom: 0;
    align-self: start;
}

.filter-product-name {
    margin: 0;
    margin-top: 0;
    font-weight: lighter;
}

.filter-product-description {
    margin: 0;
    font-weight: lighter;
}

.filter-item {
    border: 1px solid #ddd;
    min-width: 30%;
    padding: 20px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.filter-item h4 {
    margin-bottom: 10px;
    text-align: left;
}

.filter-item p {
    text-align: left;
}

.filter-item img {
    flex: 0 0 auto;
    max-height: 20rem;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.filter-sizes-list {
    flex-wrap: wrap;
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.filter-size-item {
    font-size: 0.8rem;
    text-align: center;
    padding: 2px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    flex: 0 0 auto;
    white-space: nowrap;
    color: black;
}

.filters .item-1 {
    padding-right: 5rem;
    color: black;
    text-align: left;
    background: url('filters-description-background.webp') no-repeat center center/cover;
}

.filters .item-1 h3 {
    margin: 0;
}

.filters .item-1 .filter-product-description {
    font-weight: bold;
    font-size: 0.9rem;
}

.applications {
    padding: 40px 20px;
}

.applications h2 {
    text-align: center;
    margin-bottom: 30px;
}

.applications-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.applications-gallery img {
    flex: 1 1 calc(33.333% - 10px);
    max-height: 300px;
    object-fit: cover;
}

.commitments {
    padding: 0px 20px;
}

.commitments h2 {
    text-align: left;
    margin-bottom: 30px;
}

.commitments-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.commitment-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: rgb(207,221,233);
    padding: 20px;
    text-align: left;
}

.footer {
    padding: 40px 20px;
    margin-top: 20px;
    background-color: rgb(242,242,242);
    color: black;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info, .footer-contact, .footer-legal {
    flex: 1 1 calc(33.333% - 20px);
}

.footer-contact a {
    color: black;
    display: block;
    margin-bottom: 5px;
}

.footer h3 {
    margin-bottom: 10px;
}

.footer * {
    padding-top: 0;
    margin-top: 0;
}

@media (max-width: 768px) {
    .filters-content, .filter-items, .applications-gallery, .commitments-content, .footer-content {
        flex-direction: column;
    }

    .filter-item, .commitment-item, .applications-gallery img {
        flex: 1 1 100%;
    }
    
    .content-divider {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .filter-item:first-child {
        flex: 1 1 100%;
    }
}

@media (min-width: 1600px) {
    .filters {
        flex-wrap: nowrap;
    }
    .filter-item:first-child {
        flex: 1;
    }
}