.privacy-policy-part {
    padding: 60px 0;
    background: #f8f9fa;
}

.privacy-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.privacy-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.privacy-intro h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #667eea;
}

.privacy-section h4 {
    color: #333;
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.privacy-section h4::before {
    content: '✓';
    display: inline-block;
    background: #667eea;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 15px;
    font-size: 18px;
}

.privacy-subsection {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-subsection h5 {
    color: #667eea;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.privacy-content ul li::before {
    content: '→';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.contact-info {
    background: #667eea;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-info p {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

.privacy-notice {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.privacy-notice h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-notice p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px;
    }
    
    .privacy-intro h3 {
        font-size: 26px;
    }
    
    .privacy-section h4 {
        font-size: 22px;
    }
    
    .privacy-section {
        padding: 20px;
    }
}