.privacy-container {
    margin: 114px auto;
    line-height: 1.6;
    color: #333;
}

.privacy-wrapper {
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-wrapper h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 20px;
}

.privacy-content {
    margin-top: 40px;
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #3498db;
}

.intro-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Table of Contents */
.toc-section {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
}

.toc-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.toc-list li {
    padding: 0;
}

.toc-list a {
    display: block;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-list a:hover {
    background: #e9ecef;
    border-left-color: #3498db;
    color: #2c3e50;
    transform: translateX(5px);
}

/* Articles */
.privacy-article {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    scroll-margin-top: 100px;
}

.privacy-article h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.privacy-article p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sub Sections */
.sub-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 3px solid #3498db;
}

.sub-section p {
    margin-bottom: 10px;
}

.sub-section p:last-child {
    margin-bottom: 0;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.9rem;
    min-width: 600px;
}

.privacy-table th,
.privacy-table td {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    word-wrap: break-word;
}

.privacy-table th {
    background: #3498db;
    color: #fff;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.privacy-table tbody tr:hover {
    background: #f8f9fa;
}

.privacy-table td {
    border-right: 1px solid #e9ecef;
}

.privacy-table td:last-child {
    border-right: none;
}

/* Mobile Table Cards */
.table-mobile-cards {
    display: none;
}

@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: visible;
        box-shadow: none;
    }

    .privacy-table {
        display: none !important;
    }

    .table-mobile-cards {
        display: block !important;
    }
}

.mobile-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-card-header {
    background: #3498db;
    color: #fff;
    padding: 10px 15px;
    margin: -20px -20px 15px -20px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    text-align: center;
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f3f4;
}

.mobile-card-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mobile-card-label {
    font-weight: 600;
    color: #495057;
    min-width: 100px;
    margin-right: 15px;
}

.mobile-card-value {
    flex: 1;
    text-align: right;
    word-wrap: break-word;
}

/* Contact Info */
.contact-info {
    margin: 20px 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.contact-item h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

/* Effective Date */
.effective-date {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #bee5eb;
}

.effective-date p {
    margin-bottom: 5px;
    font-weight: 500;
}

.effective-date p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }

    .privacy-wrapper {
        padding: 30px 20px;
    }

    .privacy-wrapper h1 {
        font-size: 2rem;
    }

    .privacy-article {
        padding: 20px;
    }

    .privacy-article h2 {
        font-size: 1.2rem;
    }

    .intro-section,
    .toc-section {
        padding: 20px;
    }

    .toc-list a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-wrapper h1 {
        font-size: 1.8rem;
    }

    .privacy-article h2 {
        font-size: 1.1rem;
    }

    .mobile-card {
        padding: 15px;
    }

    .mobile-card-header {
        margin: -15px -15px 15px -15px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .mobile-card-label {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .mobile-card-value {
        font-size: 0.85rem;
    }
}