.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    background-size: cover;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.breadcrumb-custom .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.last-updated-badge {
    background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
    border: none;
    color: #2d3436;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.content-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.section-content {
    padding: 30px;
}

.table-of-contents {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.toc-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.toc-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.toc-item a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.toc-item a i {
    margin-right: 10px;
    color: #667eea;
}

.toc-item:hover a {
    color: #667eea;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.highlight-box::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #667eea;
    font-size: 1.2rem;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.warning-box::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffc107;
    font-size: 1.2rem;
}

.data-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.data-table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
}

.data-table tbody td {
    padding: 15px;
    border-color: #e9ecef;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card .card-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-card h5 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.rights-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.rights-list .list-group-item {
    border: none;
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.rights-list .list-group-item i {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-notice {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    border-radius: 15px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    display: none;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #667eea, transparent);
    margin: 40px 0;
    border-radius: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0;
    }

    .section-content {
        padding: 20px;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .table-of-contents {
        padding: 20px;
    }
}