/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    
    /* Accessibility */
    --focus-outline: 3px solid #007bff;
}

/* ===== GLOBAL FONT SETTINGS ===== */
/* Apply Poppins font to entire website to match work process section */
html,
body {
    font-family: "Poppins", sans-serif !important;
}

/* Ensure all text elements use Poppins (excluding icons) */
body,
p, span, div, a, li, td, th,
label, small, strong, em, b {
    font-family: "Poppins", sans-serif !important;
}

/* Exclude icon elements from Poppins - they need their own font families */
i[class*="fa-"], i[class*="fas"], i[class*="far"], i[class*="fal"], i[class*="fab"], i[class*="fa "],
.fa, .fas, .far, .fal, .fab,
[class*="flaticon-"], .flaticon,
[class*="icon-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", "Font Awesome 5 Pro" !important;
}

/* Ensure headings use Poppins */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Poppins", sans-serif !important;
}

/* Ensure form elements use Poppins */
input, textarea, select, button,
.form-control, .form-select, .form-label,
.btn, .main-btn {
    font-family: "Poppins", sans-serif !important;
}

/* But exclude icons inside buttons */
.btn i, .main-btn i, button i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", "Font Awesome 5 Pro" !important;
}

/* Ensure Bootstrap components use Poppins */
.card, .card-title, .card-text, .card-body,
.navbar, .nav-link, .navbar-brand,
.badge, .alert, .dropdown-menu,
.table, .pagination {
    font-family: "Poppins", sans-serif !important;
}

/* Ensure custom sections use Poppins */
.hero-section, .hero-title, .hero-subtitle,
.services-section, .service-card, .service-title,
.portfolio-section, .product-catalog-page,
.about-us-area, .about-content, .about-features {
    font-family: "Poppins", sans-serif !important;
}

/* ===== ACCESSIBILITY SIDEBAR ===== */
.accessibility-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.accessibility-sidebar.open {
    left: 0;
}

.accessibility-sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.accessibility-sidebar-header .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.accessibility-sidebar-content {
    padding: 1.5rem;
}

.accessibility-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.accessibility-section:last-child {
    border-bottom: none;
}

.accessibility-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accessibility-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.accessibility-link:hover {
    background: rgba(44, 90, 160, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.accessibility-link i {
    width: 16px;
    text-align: center;
}

/* ===== SWITCH TOGGLE STYLES ===== */
.switch-toggle-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.switch-toggle {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.switch-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: relative;
    width: 60px;
    height: 32px;
    background: #dc3545;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.switch-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.switch-label {
    display: flex;
    align-items: center;
    flex: 1;
    font-weight: 500;
    color: var(--primary-color);
}

.switch-icon {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.switch-text {
    font-size: 0.95rem;
}

/* Switch ON state */
.switch-input:checked + .switch-slider {
    background: #28a745;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.switch-input:checked + .switch-slider .switch-handle {
    transform: translateX(28px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.switch-input:checked ~ .switch-label .switch-icon {
    color: #28a745;
    animation: pulse 1.5s infinite;
}

/* Hover effects */
.switch-toggle:hover .switch-slider {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 2px rgba(44, 90, 160, 0.2);
}

.switch-input:checked + .switch-slider:hover {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 0 0 3px rgba(40, 167, 69, 0.3);
}

/* Focus styles for accessibility */
.switch-input:focus + .switch-slider {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Disabled state */
.switch-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.switch-toggle.disabled .switch-slider {
    background: #6c757d;
    cursor: not-allowed;
}

.switch-toggle.disabled .switch-handle {
    background: #e9ecef;
    cursor: not-allowed;
}

/* Pulse animation for active state */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== ACCESSIBILITY TOGGLE BUTTON ===== */
.accessibility-toggle-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1040;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.accessibility-toggle-btn:hover {
    background: #1e3a8a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.accessibility-toggle-btn:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.brand-text {
    margin-left: 10px;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #1a252f !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: 70vh;
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    margin-top: auto;
}

.main-footer h5,
.main-footer h6 {
    color: white;
    margin-bottom: 1rem;
}

.main-footer a {
    transition: var(--transition);
}

.main-footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== ACCESSIBILITY FEATURES ===== */

/* Focus Styles */
*:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .accessibility-sidebar {
        width: 100%;
        left: -100%;
    }
    
    .accessibility-toggle-btn {
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-text {
        margin-left: 0;
        margin-top: 5px;
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .main-footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 1rem 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-accessible {
    line-height: 1.6;
    max-width: 65ch;
}

/* ===== SERVICE SECTION STYLES ===== */
.services-section .card-accessible {
    text-align: left;
}

.services-section .card-accessible .card-body {
    text-align: left;
}

.services-section .service-content {
    text-align: left;
}

.services-section .service-content p,
.services-section .service-content h3,
.services-section .service-content h4,
.services-section .service-content h5,
.services-section .service-content h6 {
    text-align: left;
}

.services-section .service-content ul,
.services-section .service-content ol {
    text-align: left;
    padding-left: 1.5rem;
}

.services-section .service-content li {
    text-align: left;
}

/* ===== NEWS SECTION STYLES ===== */
.news-section .card-accessible {
    text-align: left;
}

.news-section .card-accessible .card-body {
    text-align: left;
    padding: 1.5rem;
}

.news-section .card-title {
    text-align: left;
}

.news-section .card-text {
    text-align: left;
}

.news-section .card-text p {
    text-align: left;
}

/* ===== ABOUT PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.history-section, .mission-section {
    background: #fff;
}

.vision-section, .values-section {
    background: var(--secondary-color);
}

.value-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: none;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.value-icon {
    color: var(--primary-color);
}

.leadership-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: none;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.leadership-image img {
    border: 4px solid var(--primary-color);
    transition: var(--transition);
}

.leadership-image img:hover {
    transform: scale(1.05);
}

.about-section-image img {
    transition: var(--transition);
}

.about-section-image img:hover {
    transform: scale(1.05);
}

/* ===== WHAT WE DO PAGE STYLES ===== */
.service-card, .program-card, .impact-card, .involvement-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
}

.service-card:hover, .program-card:hover, .impact-card:hover, .involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon, .program-header i {
    color: var(--primary-color);
}

.advocacy-point, .technology-point {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.advocacy-point i, .technology-point i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.involvement-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .advocacy-point, .technology-point {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== NEWS PAGE STYLES ===== */
.news-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    background: white;
}

.news-title {
    color: #333;
    line-height: 1.4;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
}

.no-news-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
}

@media (max-width: 768px) {
    .cta-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
    
    .newsletter-form .col-md-8,
    .newsletter-form .col-md-4 {
        width: 100%;
    }
}

/* ===== RESEARCH & PUBLICATION PAGE STYLES ===== */

/* Research Cards */
.research-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.research-card .card-title {
    font-weight: 600;
    line-height: 1.4;
}

.research-card .card-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Research Category Cards */
.research-category-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.research-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.research-category-card .card-body {
    padding: 2rem;
}

.research-category-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.research-category-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Publication Guidelines */
.publication-guidelines {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.publication-guidelines .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.publication-guidelines .card-body {
    padding: 2rem;
}

.publication-guidelines h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.publication-guidelines ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* No Research Section */
.no-research-section {
    padding: 4rem 2rem;
}

.no-research-section i {
    opacity: 0.5;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: #fff;
}

.newsletter-form .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Research Page */
@media (max-width: 768px) {
    .research-card .row {
        text-align: center;
    }
    
    .research-card .col-md-4 {
        margin-top: 1rem;
    }
    
    .research-category-card .card-body {
        padding: 1.5rem;
    }
    
    .publication-guidelines .card-body {
        padding: 1.5rem;
    }
    
    .newsletter-form .col-md-6,
    .newsletter-form .col-md-3 {
        margin-bottom: 1rem;
    }
}

/* ===== PROJECTS PAGE STYLES ===== */

/* Project Cards */
.project-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

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

.project-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.project-card .card-title {
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.project-content {
    flex-grow: 1;
}

.project-content .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Project Category Cards */
.project-category-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.project-category-card .card-body {
    padding: 2rem;
}

.project-category-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.project-category-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Project Impact */
.project-impact {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-impact .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.project-impact .card-body {
    padding: 2rem;
}

.project-impact h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-impact ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* No Projects Section */
.no-projects-section {
    padding: 4rem 2rem;
}

.no-projects-section i {
    opacity: 0.5;
}

/* Responsive Design for Projects Page */
@media (max-width: 768px) {
    .project-image-container {
        height: 200px;
    }
    
    .project-card .card-body {
        padding: 1.25rem;
    }
    
    .project-category-card .card-body {
        padding: 1.5rem;
    }
    
    .project-impact .card-body {
        padding: 1.5rem;
    }
    
    .project-impact .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .project-image-container {
        height: 180px;
    }
    
    .project-card .card-body {
        padding: 1rem;
    }
}

/* ===== COURT DECISIONS PAGE STYLES ===== */

/* Court Decision Cards */
.court-decision-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    border-left: 4px solid #007bff;
}

.court-decision-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-left-color: #0056b3;
}

.court-decision-card .card-body {
    padding: 2rem;
}

.court-decision-card .card-title {
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.court-decision-card .card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

.decision-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

/* Legal Framework Cards */
.legal-framework-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.legal-framework-card .card-body {
    padding: 2rem;
}

.legal-framework-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-framework-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Legal Principles */
.legal-principles {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-principles .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.legal-principles .card-body {
    padding: 2rem;
}

.legal-principles h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-principles ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Legal Resource Cards */
.legal-resource-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.legal-resource-card .card-body {
    padding: 1.5rem;
}

.legal-resource-card .card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-resource-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* No Decisions Section */
.no-decisions-section {
    padding: 4rem 2rem;
}

.no-decisions-section i {
    opacity: 0.5;
}

/* Responsive Design for Court Decisions Page */
@media (max-width: 768px) {
    .court-decision-card .row {
        text-align: center;
    }
    
    .court-decision-card .col-md-4 {
        margin-top: 1rem;
    }
    
    .court-decision-card .card-body {
        padding: 1.5rem;
    }
    
    .legal-framework-card .card-body {
        padding: 1.5rem;
    }
    
    .legal-principles .card-body {
        padding: 1.5rem;
    }
    
    .legal-resource-card .card-body {
        padding: 1.25rem;
    }
    
    .legal-principles .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .court-decision-card .card-body {
        padding: 1.25rem;
    }
    
    .legal-framework-card .card-body {
        padding: 1.25rem;
    }
    
    .legal-principles .card-body {
        padding: 1.25rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Info Cards */
.contact-info-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-info-card .card-body {
    padding: 2rem;
}

.contact-info-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info-card .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-card .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.contact-form-card .card-body {
    padding: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #198754;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-input {
    margin-top: 0.25rem;
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Office Hours & Accessibility Cards */
.office-hours-card,
.accessibility-info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office-hours-card .card-header,
.accessibility-info-card .card-header {
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1.5rem;
}

.office-hours-card .card-body,
.accessibility-info-card .card-body {
    padding: 1.5rem;
}

.office-hours-card h6,
.accessibility-info-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-hours-card p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.accessibility-info-card ul li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #007bff;
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Alert Messages */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1edff;
    color: #0c5460;
    border-left: 4px solid #198754;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert .btn-close {
    padding: 0.5rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-card .card-body {
        padding: 1.5rem;
    }
    
    .contact-form-card .card-body {
        padding: 1.5rem;
    }
    
    .office-hours-card .card-body,
    .accessibility-info-card .card-body {
        padding: 1.25rem;
    }
    
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card .card-body {
        padding: 1.25rem;
    }
    
    .contact-form-card .card-body {
        padding: 1.25rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.5rem 0.75rem;
    }
}

/* ===== NEWS DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* News Article */
.news-article {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.article-title {
    color: #2c3e50;
    line-height: 1.3;
}

.article-meta {
    font-size: 0.95rem;
}

.article-image {
    text-align: center;
}

.article-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
}

.article-content p {
    margin-bottom: 1rem;
    color: #444;
}

.article-content a {
    color: #007bff;
    text-decoration: none;
}

.article-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.article-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.content-text {
    margin-bottom: 2rem;
}

.article-actions {
    text-align: center;
}

/* Share Buttons */
.article-share {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.share-buttons .btn {
    margin-bottom: 0.5rem;
}

/* News Sidebar */
.news-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.widget-header {
    background: #007bff;
    color: #fff;
    padding: 1rem 1.5rem;
}

.widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.widget-content {
    padding: 1.5rem;
}

/* Related News Items */
.related-news-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-image {
    height: 80px;
    overflow: hidden;
    border-radius: 6px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-title a {
    color: #2c3e50;
    text-decoration: none;
}

.related-title a:hover {
    color: #007bff;
    text-decoration: underline;
}

.related-meta {
    font-size: 0.8rem;
}

/* Responsive Design for News Detail */
@media (max-width: 768px) {
    .news-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .share-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .news-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .related-news-item .row {
        text-align: center;
    }
    
    .related-news-item .col-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .news-article {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-image img {
        max-height: 250px;
    }
    
    .widget-content {
        padding: 1rem;
    }
}

/* ===== RESEARCH DETAIL PAGE STYLES ===== */

/* Research Article */
.research-article {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.research-article .article-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.research-article .article-title {
    color: #2c3e50;
    line-height: 1.3;
}

.research-article .article-meta {
    font-size: 0.95rem;
}

.research-subtitle {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}



/* Research Sidebar */
.research-sidebar {
    position: sticky;
    top: 2rem;
}

.research-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.research-sidebar .widget-header {
    background: #007bff;
    color: #fff;
    padding: 1rem 1.5rem;
}

.research-sidebar .widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.research-sidebar .widget-content {
    padding: 1.5rem;
}

/* Related Research Items */
.related-research-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.related-research-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-title a {
    color: #2c3e50;
    text-decoration: none;
}

.related-title a:hover {
    color: #007bff;
    text-decoration: underline;
}

.related-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-meta {
    font-size: 0.8rem;
}



/* Research Actions */
.research-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.research-actions .btn {
    white-space: nowrap;
}

/* Responsive Design for Research Detail */
@media (max-width: 768px) {
    .research-article {
        padding: 1.5rem;
    }
    
    .research-article .article-title {
        font-size: 1.8rem;
    }
    
    .research-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .research-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .research-actions .btn {
        flex: 1;
    }
    

}

@media (max-width: 576px) {
    .research-article {
        padding: 1rem;
    }
    
    .research-article .article-title {
        font-size: 1.5rem;
    }
    
    .research-subtitle {
        padding: 1rem;
    }
    
    .research-sidebar .widget-content {
        padding: 1rem;
    }
    
    .research-actions {
        flex-direction: column;
    }
}

/* ===== PROJECT DETAIL PAGE STYLES ===== */

/* Project Article */
.project-article {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-article .article-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.project-article .article-title {
    color: #2c3e50;
    line-height: 1.3;
}

.project-article .article-meta {
    font-size: 0.95rem;
}

/* Project Image */
.project-image-container {
    text-align: center;
    margin-bottom: 2rem;
}

.project-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Project Content */
.project-content {
    line-height: 1.7;
    color: #444;
}

.project-content h1,
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5,
.project-content h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.project-content p {
    margin-bottom: 1rem;
    color: #444;
}

.project-content a {
    color: #007bff;
    text-decoration: none;
}

.project-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.project-content ul,
.project-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.project-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.project-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.project-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 2rem;
}

.project-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.project-sidebar .widget-header {
    background: #007bff;
    color: #fff;
    padding: 1rem 1.5rem;
}

.project-sidebar .widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-sidebar .widget-content {
    padding: 1.5rem;
}

/* Related Project Items */
.related-project-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.related-project-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-title a {
    color: #2c3e50;
    text-decoration: none;
}

.related-title a:hover {
    color: #007bff;
    text-decoration: underline;
}

.related-content {
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-meta {
    font-size: 0.8rem;
}

/* Project Actions */
.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-actions .btn {
    white-space: nowrap;
}

/* Responsive Design for Project Detail */
@media (max-width: 768px) {
    .project-article {
        padding: 1.5rem;
    }
    
    .project-article .article-title {
        font-size: 1.8rem;
    }
    
    .project-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .project-article {
        padding: 1rem;
    }
    
    .project-article .article-title {
        font-size: 1.5rem;
    }
    
    .project-sidebar .widget-content {
        padding: 1rem;
    }
    
    .project-content h2 {
        font-size: 1.3rem;
    }
}

/* ===== COURT DECISION DETAIL PAGE STYLES ===== */

/* Court Decision Article */
.court-decision-article {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.court-decision-article .article-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.court-decision-article .article-title {
    color: #2c3e50;
    line-height: 1.3;
}

.court-decision-article .article-meta {
    font-size: 0.95rem;
}

.decision-subtitle {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

/* Court Decision Sidebar */
.court-decision-sidebar {
    position: sticky;
    top: 2rem;
}

.court-decision-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.court-decision-sidebar .widget-header {
    background: #dc3545;
    color: #fff;
    padding: 1rem 1.5rem;
}

.court-decision-sidebar .widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.court-decision-sidebar .widget-content {
    padding: 1.5rem;
}

/* Related Decision Items */
.related-decision-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.related-decision-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-title a {
    color: #2c3e50;
    text-decoration: none;
}

.related-title a:hover {
    color: #dc3545;
    text-decoration: underline;
}

.related-subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-meta {
    font-size: 0.8rem;
}

/* Decision Actions */
.decision-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.decision-actions .btn {
    white-space: nowrap;
}

/* Responsive Design for Court Decision Detail */
@media (max-width: 768px) {
    .court-decision-article {
        padding: 1.5rem;
    }
    
    .court-decision-article .article-title {
        font-size: 1.8rem;
    }
    
    .court-decision-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .decision-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .decision-actions .btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .court-decision-article {
        padding: 1rem;
    }
    
    .court-decision-article .article-title {
        font-size: 1.5rem;
    }
    
    .decision-subtitle {
        padding: 1rem;
    }
    
    .court-decision-sidebar .widget-content {
        padding: 1rem;
    }
    
    .decision-actions {
        flex-direction: column;
    }
}

/* ===== DYNAMIC ABOUT SECTION STYLES ===== */

.dynamic-about-section {
    background: #fff;
}

.dynamic-about-section .about-image img {
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dynamic-about-section .about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.dynamic-about-section .about-content h2 {
    color: #2c3e50;
    line-height: 1.3;
}

.dynamic-about-section .about-content .lead {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.dynamic-about-section .about-text {
    color: #444;
    line-height: 1.7;
}

.dynamic-about-section .about-text h1,
.dynamic-about-section .about-text h2,
.dynamic-about-section .about-text h3,
.dynamic-about-section .about-text h4,
.dynamic-about-section .about-text h5,
.dynamic-about-section .about-text h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dynamic-about-section .about-text h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.dynamic-about-section .about-text p {
    margin-bottom: 1rem;
    color: #444;
}

.dynamic-about-section .about-text a {
    color: #007bff;
    text-decoration: none;
}

.dynamic-about-section .about-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.dynamic-about-section .about-text ul,
.dynamic-about-section .about-text ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.dynamic-about-section .about-text li {
    margin-bottom: 0.5rem;
    color: #444;
}

.dynamic-about-section .about-text blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.dynamic-about-section .about-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.dynamic-about-section .btn-accessible {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
}

.dynamic-about-section .btn-accessible:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Dynamic About Section */
@media (max-width: 768px) {
    .dynamic-about-section .about-content h2 {
        font-size: 2rem;
    }
    
    .dynamic-about-section .about-content .lead {
        font-size: 1rem;
    }
    
    .dynamic-about-section .about-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .dynamic-about-section .about-content h2 {
        font-size: 1.8rem;
    }
    
    .dynamic-about-section .about-text h2 {
        font-size: 1.3rem;
    }
    
    .dynamic-about-section .btn-accessible {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== JOB VACANCY PAGE STYLES ===== */
.job-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.job-card-header {
    background: white;
}

.job-title {
    color: #333;
    line-height: 1.4;
}

.job-meta small {
    color: #6c757d;
}

.job-description {
    color: #6c757d;
    line-height: 1.6;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.benefit-icon {
    color: var(--primary-color);
}

.no-vacancies-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control {
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #333;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    background-color: #fff;
    color: #333;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-text {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Simple modal input styling */
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="tel"],
.modal textarea {
    background-color: #fff;
    color: #333;
    border: 1px solid #ced4da;
}

.btn-accessible {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-accessible:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card-accessible {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-accessible:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
    .accessibility-sidebar,
    .accessibility-toggle-btn,
    .navbar,
    .main-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .main-content {
        padding: 0;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --secondary-color: #2d3748;
        --border-color: #4a5568;
    }
    
    .main-header {
        background: #1a202c;
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn:hover,
    .card-accessible:hover {
        transform: none;
    }
}
