a {
    color: var(--primary-color);
    text-decoration: underline;
}

ul {
    line-height: 140%;
    font-family: var(--secondary-font);
    text-align: left;
}

.iubenda-cs-brand-badge {
    display: none !important;
}

/* Sections styles */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 40px;
    color: var(--text-color-dark);
}

.section--even {
    background-color: var(--background-even);
}

.section--odd {
    background-color: var(--background-odd);
    color: var(--text-color-light);
}

.section__content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.section__title {
    font-family: var(--title-font);
    font-size: 48px;
    margin-bottom: 20px;
}

.section__text {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.5;
}

.info-section {
    align-items: center;
    background: url('images/info-section.webp') no-repeat center center/cover;
    display: flex;
    height: 100vh;
    padding: 0 15% 40px;
    position: relative;
}

.info-section__content {
    color: black;
    margin-left: auto;
    text-align: center;
    width: 50%;
}

.info-section__title {
    color: var(--secondary-color);
    font-family: var(--title-font);
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.info-section__text {
    color: var(--text-color-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 190%;
}

.map {
    height: 600px;
    width: 100%;
}

/* Gallery grid styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid__item img {
    width: 250px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

/* Contacts styles */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    color: var(--primary-color);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: darken(var(--primary-color), 10%);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section__title {
        font-size: 50px;
    }

    .hero-section__separator {
        width: 80px;
        margin: 10px 0;
    }

    .hero-section__cta-button {
        padding: 15px 40px;
        font-size: 10px;
    }

    .info-section {
        background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5)), url(images/info-section.webp) no-repeat center center / cover;
        background-position: -100px;
        height: auto;
    }

    .info-section__content {
        width: 100%;
        margin-left: 0;
    }

    .info-section__title {
        font-size: 30px;
    }

    .info-section__text {
        font-size: 14px;
    }

    .section__content {
        padding: 0 5%;
    }

    .section__title {
        font-size: 36px;
    }

    .section__text {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }

    .gallery-grid__item img {
        width: 100%;
        border-radius: 0;
    }

    .social-icons {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .social-icon {
        font-size: 24px;
    }
}
