.privacy-policy-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    width: 100%;
    padding: 0;
}

.privacy-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 60px;
    box-shadow: none;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #ffd700;
}

.privacy-logo {
    width: 150px;
    margin-bottom: 20px;
}

.privacy-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.privacy-update {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.privacy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: justify;
}

.privacy-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.privacy-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 15px;
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-email {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.back-home {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.back-home-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffd700;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 20px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .privacy-content, .privacy-list li {
        font-size: 0.95rem;
    }
}

