/* Struttura principale della pagina Privacy */
.center_content_pages {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    color: #444;
    line-height: 1.8;
}

/* Titolo principale con gradiente soft */
.center_content_pages h1 {
    font-family: 'Georgia', serif;
    color: #B52025;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 25px;
}

.center_content_pages h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B52025, transparent);
}

/* Intro Titolare */
.privacy-intro {
    background: #fffafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffebeb;
    margin-bottom: 40px;
}

/* Sottotitoli con bordo animato */
.center_content_pages h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 45px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    border-left: 5px solid #B52025;
    padding-left: 15px;
    background: linear-gradient(90deg, #fdf2f2 0%, transparent 100%);
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Liste puntate eleganti */
.center_content_pages ul {
    list-style: none;
    padding-left: 20px;
    margin-left: 5px;
}

.center_content_pages ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
    transition: transform 0.2s;
}

/* Pallino rosso elegante via Font Awesome */
/* Link stilizzati paolabegotti.eu */
.center_content_pages a {
    color: #B52025;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.center_content_pages a:hover {
    color: #333;
    border-bottom: 1px solid #333;
}

/* Sezioni */
section {
    margin-bottom: 30px;
}

/* Footer informativo della policy */
.center_content_pages hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .center_content_pages {
        margin: 20px;
        padding: 30px 20px;
    }
    .center_content_pages h1 {
        font-size: 2.2rem;
    }
}

/* Browser Links e Buttons già ottimi, li manteniamo armonizzandoli */
.browser-links li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fdfdfd;
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    color: #555 !important;
}

.browser-links li a:hover {
    background: #B52025;
    color: #fff !important;
    border-color: #B52025;
}

.btn-reset {
    display: inline-block;
    background: #B52025;
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(181, 32, 37, 0.2);
    margin-top: 20px;
}