/* ===== PRIVACY POLICY PAGE STYLES ===== */

/* Nascondi vertical menu */
.vertical-menu {
    display: none !important;
}

/* Hero Section */
.hero-privacy {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-privacy .hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-privacy .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Main Content */
.privacy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.privacy-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #153731;
    border-radius: 5px;
}

/* Typography */
.privacy-text h2 {
    color: #153731;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #153731;
}

.privacy-text h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.privacy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
    color: #3d4248;
}

.privacy-text a {
    color: #153731;
    text-decoration: none;
    font-weight: 500;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Date Section */
.privacy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-privacy .hero-title {
        font-size: 2rem;
    }
    
    .privacy-text h2 {
        font-size: 1.3rem;
    }
}

/* Responsive per mobile molto piccoli */
@media (max-width: 360px) {
    .hero-privacy {
        min-height: 40vh;
        padding: 2rem 0;
    }
    
    .hero-privacy .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-privacy .hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 2rem 0;
    }
    
    .privacy-text {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .privacy-intro {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .privacy-text h2 {
        font-size: 1.2rem;
        margin: 2rem 0 0.8rem 0;
    }
    
    .privacy-text h3 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.4rem 0;
    }
    
    .privacy-text ul {
        padding-left: 1.5rem;
    }
    
    .privacy-text li {
        margin-bottom: 0.4rem;
        font-size: 0.95rem;
    }
    
    .privacy-date {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}
