/**
 * Cookie Policy Page Styles
 */

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-section ul {
    line-height: 1.8;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

/* Cookie type cards */
.content-section .d-flex {
    transition: all 0.3s ease;
}

.content-section .d-flex:hover {
    transform: translateX(5px);
}

/* Table */
.table {
    margin-top: 1.5rem;
}

.table thead {
    background-color: #f8f9fa;
}

.table code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e83e8c;
}

/* Alert boxes */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-light {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.alert-light a {
    color: #667eea;
    text-decoration: none;
}

.alert-light a:hover {
    text-decoration: underline;
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: #667eea;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #667eea;
}

/* Back button */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .table {
        font-size: 0.85rem;
    }
}
