/* Custom Styles for Lecture Privacy & Terms Pages */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

.nav-link.active {
    font-weight: 600;
}

/* Card hover effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Button text always white */
.btn-primary {
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff !important;
}

/* Content styling */
.card-body h2 {
    color: #0d6efd;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.card-body h3 {
    color: #495057;
    font-weight: 600;
    margin-top: 1.5rem;
}

.card-body h4 {
    color: #6c757d;
    font-weight: 600;
}

.card-body ul {
    padding-left: 1.5rem;
}

.card-body li {
    margin-bottom: 0.5rem;
}

.card-body a {
    color: #0d6efd;
    text-decoration: none;
}

.card-body a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none;
    }
    
    .container {
        max-width: 100%;
    }
}

