/* Privacy Policy Styles */
.privacy-policy-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.privacy-header {
    position: relative;
}

.privacy-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.usage-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    height: 100%;
    transition: background-color 0.2s ease;
}

.usage-item:hover {
    background: #e9ecef;
}

.usage-item i {
    font-size: 1.5rem;
}

.storage-info {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    height: 100%;
    text-align: center;
}

.storage-info i {
    font-size: 1.5rem;
}

.contact-info i {
    opacity: 0.9;
}

.list-group-item {
    background: transparent !important;
    transition: padding-left 0.2s ease;
}

.list-group-item:hover {
    padding-left: 1rem !important;
}

.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.alert {
    border-left: 4px solid;
}

.alert-info {
    border-left-color: #17a2b8;
}

.alert-warning {
    border-left-color: #ffc107;
}

.alert-secondary {
    border-left-color: #6c757d;
}

@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 1rem 0;
    }

    .display-4 {
        font-size: 2rem;
    }

    .usage-item,
    .storage-info {
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}