/* CCPA Compliance Styles */
.ccpa-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #0ea5e9;
}

.ccpa-notice .highlight-box {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.ccpa-notice .highlight-box h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ccpa-notice .highlight-box p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.ccpa-rights {
    margin: 2rem 0;
}

.ccpa-rights h4 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.right-item {
    background: white;
    border: 1px solid #e0f2fe;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.right-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.right-item h5 {
    color: #1e40af;
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.right-item h5 i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.right-item p {
    margin: 0 0 0.5rem 0;
    color: #374151;
    line-height: 1.6;
}

.right-item ul {
    margin: 0.5rem 0 0 1rem;
    color: #374151;
}

.right-item li {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.ccpa-categories {
    margin: 2rem 0;
}

.ccpa-categories h4 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.category-item {
    background: white;
    border: 1px solid #e0f2fe;
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.category-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.category-item h5 {
    color: #1e40af;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.category-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.exercise-rights {
    margin: 2rem 0;
}

.exercise-rights h4 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-option {
    background: white;
    border: 1px solid #e0f2fe;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-option i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-option div strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-option a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

.verification-notice,
.response-time {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.verification-notice h5,
.response-time h5 {
    color: #475569;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.verification-notice p,
.response-time p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

.authorized-agent {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.authorized-agent h4 {
    color: #a16207;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.authorized-agent p {
    color: #713f12;
    margin-bottom: 0.5rem;
}

.authorized-agent ul {
    margin: 0.5rem 0 0 1rem;
    color: #713f12;
}

.authorized-agent li {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ccpa-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .ccpa-notice .highlight-box {
        padding: 1rem;
    }
    
    .ccpa-notice .highlight-box h3 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .right-item {
        padding: 1rem;
    }
}

/* Animation */
.right-item,
.category-item,
.contact-option {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.right-item:nth-child(1) { animation-delay: 0.1s; }
.right-item:nth-child(2) { animation-delay: 0.2s; }
.right-item:nth-child(3) { animation-delay: 0.3s; }
.right-item:nth-child(4) { animation-delay: 0.4s; }

.category-item:nth-child(1) { animation-delay: 0.1s; }
.category-item:nth-child(2) { animation-delay: 0.2s; }
.category-item:nth-child(3) { animation-delay: 0.3s; }
.category-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
