:root {
    --primary-color: #1a1a1a;
    --primary-hover: #000000;
    --secondary-color: #4a5568;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero .lead {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1rem;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card-header svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-card-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.sidebar-card-body {
    padding: 1.25rem;
}

.sidebar-card-body p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    background: #f8fafc;
    transform: translateX(4px);
}

.sidebar-links svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1.5rem;
}

.sidebar-cta h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Privacy Intro */
.privacy-intro {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

/* Privacy Policy Embed */
.privacy-policy-embed {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 2rem;
}

.embed-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.embed-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.embed-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.embed-body {
    padding: 2rem;
}

.embed-body .iubenda-embed {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
}

/* Privacy Footer */
.privacy-footer {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.privacy-footer p {
    font-size: 0.938rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

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

.privacy-footer a:hover {
    color: var(--primary-hover);
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        padding: 1.5rem;
    }

    .embed-body {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .privacy-hero {
        padding: 2rem 0;
    }

    .privacy-hero h1 {
        font-size: 1.75rem;
    }

    .privacy-intro {
        padding: 1rem;
    }

    .embed-body {
        padding: 1rem;
    }
}
