* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 2rem;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: shield 2s ease-in-out infinite;
}

@keyframes shield {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA000, #CC8000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.header p {
    color: #aaa;
    font-size: 1.1rem;
}

.content {
    line-height: 1.8;
}

.section {
    margin-bottom: 2.5rem;
    animation: slideUp 0.6s ease-out both;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }
.section:nth-child(6) { animation-delay: 0.5s; }
.section:nth-child(7) { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section h2 {
    font-size: 1.8rem;
    color: #FFA000;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(135deg, #FFA000, #CC8000);
    border-radius: 2px;
}

.section p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.section li {
    color: #ccc;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.section li:hover {
    color: #fff;
}

.section li:before {
    content: "•";
    color: #FFA000;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: rgba(255, 160, 0, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #FFD04D;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 160, 0, 0.3);
}

.contact-section {
    background: rgba(255, 160, 0, 0.1);
    border-left: 4px solid #FFA000;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.contact-section:hover {
    background: rgba(255, 160, 0, 0.15);
    transform: translateX(5px);
}

.contact-section h2 {
    margin-bottom: 0.75rem;
}

.contact-section h2::before {
    display: none;
}

.contact-link {
    color: #FFA000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFA000;
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #FFD04D;
}

.contact-link:hover::after {
    width: 100%;
}

.button-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFA000, #CC8000);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 160, 0, 0.5);
    background: linear-gradient(135deg, #FFB833, #FFA000);
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .privacy-container {
        padding: 1.5rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .header-icon {
        font-size: 3rem;
    }
}