.privacy-container {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    max-width: 1000px;
    position: relative;
}
.privacy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 29, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 29, 70, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.privacy-content {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 29, 70, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.privacy-header {
    background: linear-gradient(135deg, #ff1d46 0%, #d91741 100%);
    color: #000;
    text-align: center;
    padding: 30px;
    margin: 0;
    border-radius: 20px 20px 0 0;
    position: relative;
}
.privacy-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, #ff1d46 0%, #d91741 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
.privacy-header h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}
.privacy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background: transparent;
    overflow: hidden;
}
.privacy-table th {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ff1d46;
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-bottom: 2px solid #ff1d46;
    position: relative;
}
.privacy-table th::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff1d46 0%, #d91741 100%);
    animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.privacy-table td {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 29, 70, 0.1);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    transition: all 0.3s ease;
    position: relative;
}
.privacy-table tr:nth-child(even) td {
    background: rgba(255, 29, 70, 0.03);
}
.privacy-table tr:hover td {
    background: rgba(255, 29, 70, 0.08);
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(255, 29, 70, 0.1);
}
.privacy-table tr:hover td::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff1d46 0%, #d91741 100%);
}
.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff1d46 0%, #d91741 100%);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(255, 29, 70, 0.3);
    flex-shrink: 0;
}
.section-title {
    font-weight: 600;
    color: #ff1d46;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.section-content {
    color: #e0e0e0;
    margin-left: 50px;
}
.contact-highlight {
    background: linear-gradient(135deg, #ff1d46 0%, #d91741 100%);
    color: #000;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.contact-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 29, 70, 0.4);
    color: #000;
}
.table-container {
    padding: 30px;
    position: relative;
}
.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 29, 70, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.decorative-element:nth-child(1) {
    top: 10%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}
.decorative-element:nth-child(2) {
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 10px;
    }
    .privacy-table th,
    .privacy-table td {
        padding: 15px;
    }
    .section-content {
        margin-left: 0;
        margin-top: 10px;
    }
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .section-number {
        margin-right: 0;
    }
    .table-container {
        padding: 20px 15px;
    }
}
@media (max-width: 480px) {
    .privacy-header {
        padding: 20px 15px;
    }
    .privacy-table {
        font-size: 0.85rem;
    }
    .privacy-table th,
    .privacy-table td {
        padding: 12px;
    }
}