/* Privacy Policy Styles */

/* Hero Section */
.privacy-hero {
    position: relative;
    padding: 150px 0 80px;
    background: #1a0b2e;
    overflow: hidden;
    text-align: center;
}

.privacy-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(138, 43, 226, 0.3) 0%,
            rgba(75, 0, 130, 0.3) 20%,
            rgba(25, 25, 112, 0.3) 40%,
            rgba(0, 191, 255, 0.2) 70%,
            rgba(255, 20, 147, 0.2) 100%);
    z-index: 1;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

.last-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-style: italic;
}

/* Content Section */
.privacy-content-section {
    padding: 60px 0 100px;
    background: #ffffff;
    color: #000000;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-text {
    color: #333333;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-text h2 {
    color: #000000;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-text h2 i {
    color: #333333;
    font-size: 1.2rem;
}

.policy-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.policy-text ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #333333;
}

.policy-text li::before {
    content: '•';
    color: #000000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.policy-text strong {
    color: #000000;
    font-weight: 600;
}

.contact-privacy {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.contact-privacy p {
    margin-bottom: 0;
    text-align: center;
    color: #333333;
}

.contact-privacy a {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-privacy a:hover {
    color: #333333;
    text-decoration: none;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 60px;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-content-section {
        padding: 40px 0 80px;
    }

    .policy-text h2 {
        font-size: 1.3rem;
    }
}