/* ===================================
   Legal Pages Specific Styles
   =================================== */

/* Content section styling */
.prose h2 {
    position: relative;
    padding-left: 1rem;
}

.prose h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, #7814FF, #FF1478);
    border-radius: 2px;
}

/* Legal content styling */
.prose p {
    line-height: 1.8;
}

.prose ul {
    margin-left: 1rem;
}

.prose ul li {
    position: relative;
    padding-left: 1.5rem;
}

.prose ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #7814FF;
    font-weight: bold;
}

/* Link styling in legal pages */
.prose a {
    color: #7814FF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.prose a:hover {
    color: #FF1478;
}

/* Back to home button enhancement */
nav a {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(120, 20, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prose h1 {
        font-size: 2.5rem;
    }
    
    .prose h2 {
        font-size: 1.75rem;
    }
}

/* Page fade-in animation */
.prose {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 