* {
    box-sizing: border-box;
}

body {
    background: white;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin: 0;
    position: sticky;
    top: 0;
    max-width: 100%;
    background: #005b80;
    flex-wrap: nowrap;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 91, 128, 1) 0%, rgba(0, 77, 135, 1) 50%, rgba(0, 132, 247, 1) 99%, rgba(237, 221, 83, 1) 100%);
}

.title {
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
}

.title h1 {
    font-size: 20px;
    -webkit-text-stroke: 1px #005b80;
  }
  

.title img {
    width: 40px;
    height: 40px;
}

.links ul {
    display: flex;
    gap: 10px;
    list-style: none;
    -webkit-text-stroke: 0.5px #005b80;
}

.links a {
    color: white;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.links a:hover {
    text-decoration: underline;
}



.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 16px;
    background: #005b80;
    -webkit-text-stroke: 0.5px #005b80;
    background: linear-gradient(180deg, rgba(0, 91, 128, 1) 0%, rgba(0, 77, 135, 1) 50%, rgba(0, 132, 247, 1) 99%, rgba(237, 221, 83, 1) 100%);
}


.footer h1 {
    font-size: 20px;
}

.banner {
    width: 100%;
    height: 300px;
    line-height: 1.0;
    background-image: url("images/banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

  }

.subtitle {
    font-size: 20px;
    opacity: 0.65;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    padding: 5px;
    color: black !important;
    margin: 0;
    justify-items: center;
    justify-content: center;

}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 300px;
        text-align: center;
    }

    .footer {
        grid-template-columns: repeat(3, 150px);
        text-align: center;
    }
}

.products-grid div {


}
  
.image-carousel {
    transform: scale(0.8)
}

.button-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 20px;
    gap: 5px;
}

.button-container button {
    width: 120px;
    height: 40px;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(0, 91, 128, 1) 0%, rgba(0, 77, 135, 1) 50%, rgba(0, 132, 247, 1) 99%, rgba(237, 221, 83, 1) 100%);
}