/* Stili per la pagina della cookie policy */
#privacy-content {
    padding: 2rem 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Stili per la sezione hero */
.page-hero {
    background-color: #122b46;
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.page-hero .hero-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}

/* Stili per le sezioni della policy */
.policy-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#privacy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#privacy-wrapper h1 {
    color: #122b46;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#privacy-wrapper h2 {
    color: #1a5276;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

#privacy-wrapper h3 {
    color: #2874a6;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

#privacy-wrapper p,
#privacy-wrapper li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

#privacy-wrapper ol,
#privacy-wrapper ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

#privacy-wrapper li {
    margin-bottom: 0.5rem;
}

/* Stili per i pulsanti */
.btn-success {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    color: #fff;
    background-color: #41b0ab;
    transition: background-color 0.3s ease;
    margin: 0.5rem 0.5rem 0.5rem 0;
    text-decoration: none;
}

.btn-success:hover {
    background-color: #359993;
    color: #fff;
    text-decoration: none;
}

.btn-danger {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    color: #fff;
    background-color: #bb1a31;
    transition: background-color 0.3s ease;
    margin: 0.5rem 0.5rem 0.5rem 0;
    text-decoration: none;
}

.btn-danger:hover {
    background-color: #9e1529;
    color: #fff;
    text-decoration: none;
}

.d-none {
    display: none;
}

/* Stili per le liste */
#privacy-wrapper ul, 
#privacy-wrapper ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

#privacy-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Stili per i link */
#privacy-wrapper a {
    color: #41b0ab;
    text-decoration: none;
    transition: color 0.3s ease;
}

#privacy-wrapper a:hover {
    color: #359993;
    text-decoration: underline;
}

/* Media queries per la responsività */
@media (max-width: 1199px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    #privacy-wrapper h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    #privacy-wrapper h1 {
        font-size: 2rem;
    }
    
    #privacy-wrapper h2 {
        font-size: 1.6rem;
    }
    
    #privacy-wrapper h3 {
        font-size: 1.3rem;
    }
    
    #privacy-wrapper p,
    #privacy-wrapper li {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    #privacy-wrapper {
        padding: 0 15px;
    }
    
    #privacy-wrapper h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    #privacy-wrapper h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    #privacy-wrapper h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.8rem;
    }
    
    .btn-success,
    .btn-danger {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 575px) {
    .page-hero {
        padding: 2.5rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    #privacy-wrapper h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    #privacy-wrapper h2 {
        font-size: 1.5rem;
        margin: 1.8rem 0 1rem;
    }
    
    #privacy-wrapper h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .policy-section {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    #privacy-wrapper h1 {
        font-size: 1.6rem;
    }
    
    #privacy-wrapper h2 {
        font-size: 1.4rem;
    }
    
    #privacy-wrapper h3 {
        font-size: 1.2rem;
    }
    
    #privacy-wrapper h4 {
        font-size: 1.1rem;
    }
    
    #privacy-wrapper p,
    #privacy-wrapper li {
        font-size: 0.95rem;
    }
    
    #privacy-wrapper ol,
    #privacy-wrapper ul {
        padding-left: 1.2rem;
    }
}
