body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #61D4B0;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 1em;
}

section {
    padding: 2em;
    margin: 1em;
    background-color: #ECEDD5;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#txtabout {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

#hero {
    background-color: #ECEDD5;
    text-align: center;
}

#hero img {
    transition: transform 0.5s ease-in-out;
}

#hero img:hover {
    transform: rotateY(180deg);
}

#download-app a{
    text-decoration: none;
    color: white;
}

button {
    background-color: #61D4B0;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #333;
    color: #fff;
}

#formulari  {
    width: 250px; /* Match product-item width */
    padding: 10px;
    background-color: #61D4B0;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/* carussel */

#carousel-container {
    width: auto;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#carousel-container img {
    position: absolute;
    width: auto%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#carousel-container img.active {
    opacity: 1;
}