

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background: linear-gradient(-32deg, #a55b45, #aa3e68, #199191, #18ae6b);
    background-size: 400% 400%;
    animation: gradient 25s ease infinite;
    
    /* height: 100vh; */
    margin: 0;
    
    font-family: 'Montserrat', sans-serif;
    line-height: 150%;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-direction: column;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

 h1 {
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 48px;
    /* margin-bottom: 16px; */
}

h2 {
    /* margin: 0; */
    margin-top: 24px;
    font-size: 16px;
}
p {
    font-size: 16px;
}


a {
    color: rgb(173, 234, 255);
}

.image-logo {
    max-width: 200px;
    margin-top: 120px;
    margin-bottom: 30px;

}
/* ---------------------- */

ul {
    list-style-type: disc; /* Default bullet point style */
    margin: 20px 0; /* Adds margin above and below the list */
    padding-left: 20px; /* Indents the list */
}

li {
    line-height: 1.6; /* Increases spacing between lines */
    margin-bottom: 10px; /* Adds space between list items */
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease;
}



.container-main{
    max-width: 1100px;
    margin: 0 auto;
}

.container-main.narrow{
    margin-top: 120px;
    max-width: 820px;
    font-size: 16px;
    /* margin: 0 auto; */
}

.c-policies{
    font-size: 16px;

}

.s-links-center{
    font-size: 14px;
    text-align: center;
    width: 500px;
    padding:8px;
    color: white;
    /* padding-right:16px; */
    text-decoration: none;
}

.card-link{
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.c-card-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    width: 90%;
    padding: 20px;
    
    padding: 60px;
    margin: 0 auto;

}


.card-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    
}

.description {
    flex: 1;
    padding-right: 20px;
    max-width: 400px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}




/* Responsive Styles */
@media (max-width: 768px) {
    .c-card-product {
        max-width: 460px;
        flex-direction: column; 
        /* text-align: center; */
        padding: 64px;
    }

    .description {
        padding-right: 0;
        padding-bottom: 20px;
        max-width: 250px;
    }

    .image-container img {
        width: 250px; 
        height: 250px;
    }
}

@media (max-width: 480px) {

    .c-card-product {
        padding: 24px;
    }


    /* .image-container img {
        width: 200px;
        height: 200px;
    } */
}