/* ===== COOKIE POLICY PAGE STYLES ===== */

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

/* Hero Section */
.hero-cookie {
    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-cookie .hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.cookie-text {
    max-width: 900px;
    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;
}

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

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

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

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

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

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

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

/* Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: #153731;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #3d4248;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-table tr:hover {
    background: #e8f4f8;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-cookie .hero-title {
        font-size: 2rem;
    }
    
    .cookie-text h2 {
        font-size: 1.3rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.8rem 0.5rem;
    }
}

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