.privacy-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

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

.privacy-section-card {
    border: none;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.privacy-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.privacy-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-content {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.privacy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.privacy-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.contact-info-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .privacy-section-card {
        padding: 24px;
        margin-bottom: 16px;
    }
    
    .privacy-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .privacy-title {
        font-size: 1.25rem;
    }
}
