        /* CSS Reset & Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-color: #050F26;
            --primary-dark: #030a1a;
            --primary-light: #0a1840;
            --accent-color: #1e40af;
            --accent-hover: #172554;
            --text-dark: #333;
            --text-light: #595959;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --focus-color: #1e40af;
            --success-color: #10b981;
            --transition: all 0.3s ease;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }

        /* Skip to Main Content Link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--primary-color);
            color: var(--white);
            padding: 12px 24px;
            text-decoration: none;
            z-index: 10000;
            border-radius: 0 0 8px 0;
            font-weight: 600;
            font-size: 1rem;
        }

        .skip-link:focus {
            top: 0;
            outline: 3px solid var(--white);
            outline-offset: 2px;
        }

        /* Container System */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header - Logo Section */
        .header-logo {
            background: var(--white);
            padding: 20px 0;
            border-bottom: 3px solid var(--primary-color);
        }

        .logo-container {
            text-align: center;
        }

        .logo {
            max-height: 200px;
            width: auto;
        }

        /* Navigation */
        .nav-wrapper {
            background: var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            position: relative;
        }

        .main-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav > li {
            position: relative;
        }

        .main-nav > li > a {
            display: block;
            padding: 18px 24px;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .main-nav > li > a:hover,
        .main-nav > li > a:focus {
            background: var(--primary-light);
        }

        .main-nav > li > a i {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 280px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: var(--transition);
            list-style: none;
            margin: 0;
            padding: 0;
            border-top: 3px solid var(--accent-color);
            z-index: 100;
        }

        .main-nav > li:hover .dropdown,
        .main-nav > li:focus-within .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li {
            border-bottom: 1px solid var(--border-color);
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        .dropdown li a {
            display: block;
            padding: 14px 20px;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 600;
        }

        .dropdown li a:hover,
        .dropdown li a:focus {
            background: var(--bg-light);
            color: var(--accent-color);
            padding-left: 25px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: var(--accent-color);
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            padding: 12px 16px;
            cursor: pointer;
            border-radius: 8px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .mobile-menu-toggle:hover,
        .mobile-menu-toggle:focus {
            background: var(--accent-hover);
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .mobile-menu-close {
            display: none;
        }

        /* Page Header */
        .page-header {
            background: #152453;
            padding: 40px 0;
            color: var(--white);
            text-align: center;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .breadcrumbs {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            font-size: 0.95rem;
            margin-top: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumbs a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumbs a:hover,
        .breadcrumbs a:focus {
            text-decoration: underline;
        }

        .breadcrumbs span {
            opacity: 0.7;
        }

        /* Main Content Layout */
        .content-wrapper {
            padding: 60px 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
        }

        .main-content {
            min-width: 0;
        }

        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; margin-top: 2rem; }
        h3 { font-size: 1.5rem; margin-top: 1.5rem; }
        h4 { font-size: 1.25rem; margin-top: 1.25rem; }

        p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 28px;
            background: var(--accent-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .btn:hover,
        .btn:focus {
            background: #172554;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--accent-color);
            color: var(--white);
        }

        /* Lists */
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        ul li, ol li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }

        /* Image with Text Staggered Layout */
        .image-text-section {
            margin: 3rem 0;
        }

        .image-text-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 3rem;
        }

        .image-text-row.reverse {
            direction: rtl;
        }

        .image-text-row.reverse > * {
            direction: ltr;
        }

        .image-text-content h3 {
            margin-top: 0;
        }

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

        /* Accordion */
        .accordion {
            margin: 2rem 0;
        }

        .accordion-item {
            border: 2px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-header {
            margin: 0;
        }

        .accordion-header h3 {
            margin: 0;
        }

        .accordion-button {
            width: 100%;
            padding: 20px 24px;
            background: var(--white);
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-button:hover,
        .accordion-button:focus {
            background: var(--bg-light);
        }

        .accordion-button[aria-expanded="true"] {
            background: var(--bg-light);
        }

        .accordion-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .accordion-button[aria-expanded="true"] .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-content.active {
            padding: 20px 24px;
            max-height: 2000px;
        }

        /* Responsive Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
        }

        th {
            background: var(--primary-color);
            color: var(--white);
            padding: 16px;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:nth-child(even) {
            background: var(--bg-light);
        }

        /* Photo Gallery - Two Across */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 2rem 0;
        }

        .photo-item {
            cursor: pointer;
            transition: var(--transition);
        }

        .photo-item:hover,
        .photo-item:focus {
            transform: translateY(-5px);
        }

        .photo-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .photo-caption {
            margin-top: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-light);
            text-align: center;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .lightbox-close:hover,
        .lightbox-close:focus {
            background: var(--bg-light);
            transform: scale(1.1);
        }

        /* Sidebar Widgets */
        .sidebar-widget {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            border: 2px solid var(--border-color);
        }

        .sidebar-widget h3 {
            margin-top: 0;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .sidebar-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-nav li {
            margin-bottom: 0;
        }

        .sidebar-nav a {
            display: block;
            padding: 12px 16px;
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 6px;
            transition: var(--transition);
            font-weight: 600;
        }

        .sidebar-nav a:hover,
        .sidebar-nav a:focus {
            background: var(--white);
            color: var(--accent-color);
            padding-left: 24px;
        }

        .sidebar-nav a.active {
            background: var(--accent-color);
            color: var(--white);
        }

        .contact-box {
            background: var(--primary-color);
            color: var(--white);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .contact-box h3 {
            color: var(--white);
            margin-top: 0;
        }

        .contact-box p {
            margin-bottom: 1rem;
        }

        .contact-box a {
            color: var(--white);
            font-weight: 600;
        }

        .contact-box a:hover,
        .contact-box a:focus {
            text-decoration: none;
            opacity: 0.8;
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer p,
        .footer a,
        .footer address {
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            font-style: normal;
        }

        .footer a {
            text-decoration: none;
            transition: var(--transition);
        }

        .footer a:hover,
        .footer a:focus {
            color: var(--white);
            text-decoration: underline;
        }

        .footer nav p {
            margin: 0;
        }

        .footer nav a {
            display: inline-block;
            padding: 4px 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            font-size: 2rem;
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover,
        .social-links a:focus {
            color: #fbbf24;
            transform: scale(1.2);
        }

        .accessibility-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding: 12px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            color: var(--white);
        }

        .accessibility-link:hover,
        .accessibility-link:focus {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
            text-decoration: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        /* Single Column Content */
        .single-column-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-divider {
            border: none;
            border-top: 3px solid var(--border-color);
            margin: 3rem 0;
        }

        /* Callout Boxes */
        .callout-box {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            padding: 25px;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 5px solid;
        }

        .callout-info {
            background: #eff6ff;
            border-left-color: #3b82f6;
        }

        .callout-warning {
            background: #fffbeb;
            border-left-color: #f59e0b;
        }

        .callout-success {
            background: #f0fdf4;
            border-left-color: #10b981;
        }

        .callout-icon {
            font-size: 2rem;
            display: flex;
            align-items: flex-start;
            padding-top: 0.25rem;
        }

        .callout-info .callout-icon {
            color: #3b82f6;
        }

        .callout-warning .callout-icon {
            color: #f59e0b;
        }

        .callout-success .callout-icon {
            color: #10b981;
        }

        .callout-content h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }

        .callout-content p {
            margin-bottom: 0;
        }

        /* Three Column Cards */
        .three-column-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 2rem 0;
        }

        .info-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .info-card:hover,
        .info-card:focus-within {
            border-color: var(--accent-color);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .info-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .info-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Testimonial */
        .testimonial {
            background: var(--bg-light);
            border-left: 5px solid var(--accent-color);
            padding: 40px;
            margin: 2rem 0;
            border-radius: 12px;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            font-size: 5rem;
            color: var(--accent-color);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            text-align: right;
            font-style: normal;
        }

        .testimonial-author strong {
            display: block;
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-author span {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 2rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            transition: var(--transition);
        }

        .stat-item:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Download List */
        .download-list {
            margin: 2rem 0;
        }

        .download-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 20px;
            padding: 25px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 1rem;
            text-decoration: none;
            color: var(--text-dark);
            transition: var(--transition);
            align-items: center;
        }

        .download-item:hover,
        .download-item:focus {
            border-color: var(--accent-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transform: translateX(5px);
        }

        .download-icon {
            font-size: 2.5rem;
            color: #dc2626;
        }

        .download-item:has(.fa-file-word) .download-icon {
            color: #2563eb;
        }

        .download-info h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .download-title {
            margin: 0 0 0.5rem 0 !important;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .download-info p {
            margin: 0 0 0.5rem 0;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .download-meta {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .download-action {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        /* Contact Form Section */
        .contact-form-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 2rem;
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .cform-group {
            margin-bottom: 1.5rem;
        }

        .cform-label {
            display: block;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .cform-required {
            color: #dc2626;
        }

        .cform-input,
        .cform-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
        }

        .cform-input:hover,
        .cform-textarea:hover {
            border-color: var(--accent-color);
        }

        .cform-input:focus,
        .cform-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }

        .cform-input::placeholder,
        .cform-textarea::placeholder {
            color: #6b7280;
            opacity: 1;
        }

        .cform-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .cform-spam-note {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-style: italic;
        }

        .pbutton {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 32px;
            background: var(--accent-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .pbutton:hover,
        .pbutton:focus {
            background: #172554;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
        }

        #showData {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 8px;
            display: none;
        }

        #showData:not(:empty) {
            display: block;
        }

        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
        }

        .contact-info-box {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .contact-info-box h3 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .contact-info-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-color), #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            flex-shrink: 0;
        }

        .contact-info-item h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .contact-info-label {
            margin: 0 0 0.5rem 0 !important;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .contact-info-item p {
            margin: 0;
            color: var(--text-light);
            line-height: 1.6;
        }

        .contact-info-item a {
            color: var(--accent-color);
            font-weight: 600;
        }

        .contact-info-item a:hover,
        .contact-info-item a:focus {
            text-decoration: none;
        }

        /* Focus Visible */
        *:focus-visible {
            outline: 3px solid var(--focus-color);
            outline-offset: 2px;
        }

        /* Responsive Breakpoints */
        
        /* Medium: 768px to 1023px */
        @media screen and (max-width: 1023px) {
            .main-nav > li > a {
                padding: 18px 18px;
                font-size: 0.95rem;
            }

            .content-grid {
                grid-template-columns: 1fr 300px;
                gap: 40px;
            }
        }

        /* Tablet and Mobile: 768px and below */
        @media screen and (max-width: 767px) {
            .logo {
                max-height: 160px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-wrapper {
                position: relative;
            }

            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: stretch;
                padding: 80px 0 40px;
                overflow-y: auto;
                transition: left 0.3s ease;
                box-shadow: 4px 0 20px rgba(0,0,0,0.3);
                z-index: 2000;
                justify-content: flex-start;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav > li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .main-nav > li > a {
                padding: 18px 25px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .main-nav > li > a:hover,
            .main-nav > li > a:focus {
                background: rgba(255,255,255,0.1);
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(0,0,0,0.3);
                display: none;
                border-top: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .main-nav > li.dropdown-open .dropdown {
                display: block;
                max-height: 500px;
            }

            .dropdown li {
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .dropdown li a {
                padding: 14px 25px 14px 45px;
                color: rgba(255,255,255,0.9);
            }

            .dropdown li a:hover,
            .dropdown li a:focus {
                background: rgba(255,255,255,0.1);
                color: var(--white);
                padding-left: 50px;
            }

            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                background: rgba(255,255,255,0.1);
                border: 2px solid rgba(255,255,255,0.3);
                color: var(--white);
                font-size: 2rem;
                cursor: pointer;
                padding: 10px;
                z-index: 2001;
                border-radius: 8px;
                line-height: 1;
                width: 50px;
                height: 50px;
                display: none;
                align-items: center;
                justify-content: center;
                list-style: none;
            }

            .main-nav.active li .mobile-menu-close {
                display: flex;
            }

            .mobile-menu-close:hover,
            .mobile-menu-close:focus {
                background: rgba(255,255,255,0.2);
                border-color: rgba(255,255,255,0.5);
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .sidebar {
                position: static;
            }

            .image-text-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .image-text-row.reverse {
                direction: ltr;
            }

            .photo-gallery {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .three-column-cards {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .callout-box {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .callout-icon {
                text-align: center;
            }
        }

        /* Small: 640px and below */
        @media screen and (max-width: 639px) {
            .container {
                padding: 0 15px;
            }

            .logo {
                max-height: 160px;
            }

            .page-header h1 {
                font-size: 1.75rem;
            }

            .content-wrapper {
                padding: 40px 0;
            }

            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.35rem; }

            .table-wrapper {
                font-size: 0.9rem;
            }

            th, td {
                padding: 12px 8px;
            }
        }

/* Services and Programs Page Specific Styles */
.serv-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 25px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.serv-list-item:hover,
.serv-list-item:focus {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.serv-list-icon {
    font-size: 3rem;
    color: var(--accent-color);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.serv-list-content h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.serv-intro {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0 3rem 0;
}

.serv-intro p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .serv-list-item {
        gap: 1rem;
        padding: 20px;
    }
    
    .serv-list-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .serv-list-content h2 {
        font-size: 1.2rem;
    }
}

/* Community Health Page Specific Styles */
.ch-button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 1.5rem 0;
}

.ch-resource-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

.ch-resource-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.ch-resource-images a:hover img,
.ch-resource-images a:focus img {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ch-logo-center {
    display: block;
    max-width: 400px;
    margin: 1.5rem auto;
    height: auto;
}

.ch-video-wrapper {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.ch-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ch-video-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.ch-warning-image {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media screen and (max-width: 767px) {
    .accordion-button {
        font-size: 1rem;
    }
    
    .ch-button-grid {
        grid-template-columns: 1fr;
    }
    
    .ch-resource-images {
        grid-template-columns: 1fr;
    }
    
    .ch-warning-image {
        max-width: 100%;
    }
}

/* Environmental Health Page Specific Styles */
.eh-video-wrapper {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.eh-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.eh-video-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.eh-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.eh-contact-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.eh-contact-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.eh-contact-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.eh-contact-card p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.eh-contact-card a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.eh-contact-card a:hover,
.eh-contact-card a:focus {
    text-decoration: underline;
}

.eh-list-styled {
    margin-bottom: 1.5rem;
}

.eh-list-styled li {
    margin-bottom: 0.75rem;
}

.eh-list-styled ul {
    margin-top: 0.5rem;
}

.eh-divider {
    border: none;
    border-top: 3px solid var(--border-color);
    margin: 3rem 0;
}

@media screen and (max-width: 767px) {
    .eh-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Immunization Services Page Specific Styles */
.imm-highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0;
}

.imm-highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.imm-highlight-box p:last-child {
    margin-bottom: 0;
}

.imm-vfc-box {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 25px;
    margin: 2rem 0;
}

.imm-vfc-box h3 {
    color: #065f46;
    margin-top: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.imm-vfc-box h3 i {
    color: #10b981;
    font-size: 1.5rem;
}

.imm-vfc-criteria {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.imm-vfc-criteria li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.imm-resource-links {
    display: grid;
    gap: 20px;
    margin: 2rem 0;
}

.imm-resource-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    align-items: center;
}

.imm-resource-card:hover,
.imm-resource-card:focus {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.imm-resource-icon {
    font-size: 2rem;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
}

.imm-resource-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.imm-resource-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.imm-resource-arrow {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.imm-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.imm-info-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.imm-info-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.imm-info-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.imm-info-card h3 i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.imm-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
    display: block;
}

@media screen and (max-width: 767px) {
    .imm-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Maternal and Child Health Page Specific Styles */
.mch-image-float-right {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mch-image-inline {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mch-logo-link {
    display: inline-block;
    margin: 1rem 0;
}

.mch-logo-link img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.mch-logo-link:hover img,
.mch-logo-link:focus img {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mch-video-wrapper {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.mch-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mch-video-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .mch-image-float-right {
        float: none;
        margin: 1.5rem auto;
        display: block;
        max-width: 100%;
    }
}

/* Promotion and Prevention Page Specific Styles */
.pp-video-wrapper {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.pp-video-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pp-video-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.pp-youtube-wrapper {
    margin: 2rem 0;
}

.pp-youtube-container {
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pp-youtube-container iframe {
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.pp-logo-link {
    display: inline-block;
    margin: 1rem 0;
}

.pp-logo-link img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.pp-logo-link:hover img,
.pp-logo-link:focus img {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pp-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 1.5rem 0;
}

.pp-clickable-image {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.pp-clickable-image:hover,
.pp-clickable-image:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pp-w300 {
    max-width: 300px;
    height: auto;
}

@media screen and (max-width: 767px) {
    .pp-clickable-image {
        max-width: 100%;
    }
    
    .pp-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* School Health Page Specific Styles */
.sh-schools-list {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0;
}

.sh-schools-list h2 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.sh-schools-list ul {
    margin-bottom: 0;
}

.sh-services-section {
    margin: 3rem 0;
}

/* Immunization Clinics Page Specific Styles */
.ic-section {
    margin: 3rem 0;
}

.ic-note-box {
    background: #fffbeb;
    border-left: 5px solid #f59e0b;
    padding: 25px;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.ic-note-box p {
    margin-bottom: 0;
    line-height: 1.8;
}

.ic-button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.ic-flyer-link {
    display: block;
    margin: 2rem 0;
    text-align: center;
}

.ic-flyer-link img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.ic-flyer-link:hover img,
.ic-flyer-link:focus img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media screen and (max-width: 767px) {
    .ic-button-group {
        gap: 0.75rem;
    }
}

/* Community Resources Page Specific Styles */
.cr-intro {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0 3rem 0;
}

.cr-intro p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 600;
}

.cr-resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cr-resource-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 25px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    align-items: center;
}

.cr-resource-item:hover,
.cr-resource-item:focus {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.cr-resource-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.cr-resource-content {
    flex: 1;
}

.cr-resource-content h2 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cr-resource-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .cr-resource-item {
        gap: 15px;
        padding: 20px;
    }
    
    .cr-resource-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .cr-resource-content h2 {
        font-size: 1.1rem;
    }
}

/* Calendar Page Specific Styles */
.cal-meeting-dates {
    margin: 2rem 0 3rem 0;
}

.cal-meeting-link {
    display: block;
    text-align: center;
}

.cal-meeting-link img {
    max-width: 75%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.cal-meeting-link:hover img,
.cal-meeting-link:focus img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cal-no-events {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 3rem 0;
}

.cal-no-events i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cal-no-events p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.cal-info-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0;
}

.cal-info-box h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.cal-info-box p {
    margin-bottom: 0;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .cal-meeting-link img {
        max-width: 100%;
    }
    
    .cal-no-events {
        padding: 30px 20px;
    }
    
    .cal-no-events i {
        font-size: 3rem;
    }
}

/* About Page Specific Styles */
.about-image-float {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-mission-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 2rem 0;
}

.about-mission-box h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.about-mission-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-essential-services {
    margin: 3rem 0;
}

.about-essential-services h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-essential-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-essential-services li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-essential-services li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-serving-statement {
    background: #f0fdf4;
    border-left: 5px solid #10b981;
    padding: 25px;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.about-serving-statement p {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .about-image-float {
        float: none;
        margin: 1.5rem auto;
        display: block;
        max-width: 100%;
    }
    
    .about-essential-services li {
        padding-left: 2rem;
    }
}

/* Staff Directory Page Specific Styles */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 2rem 0;
}

.staff-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.staff-card img {
    width: 100%;
    height: auto;
    display: block;
}

.staff-card-content {
    padding: 20px;
    text-align: center;
}

.staff-card-content p {
    margin: 0;
    line-height: 1.6;
}

.staff-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.staff-title {
    color: var(--text-light);
    font-size: 0.95rem;
}

.staff-intro {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 0 0 3rem 0;
}

.staff-intro h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.staff-intro p {
    margin-bottom: 0;
    line-height: 1.8;
}

@media screen and (max-width: 1023px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 639px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Board of Directors Page Specific Styles */
.bod-purpose-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 0 0 3rem 0;
}

.bod-purpose-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 600;
}

.bod-members-section {
    margin: 2rem 0;
}

.bod-members-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.bod-members-list {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bod-member {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bod-member:last-child {
    border-bottom: none;
}

.bod-member-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    flex-shrink: 0;
}

.bod-member-info {
    flex: 1;
}

.bod-member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.bod-member-title {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

@media screen and (max-width: 767px) {
    .bod-members-list {
        padding: 25px 20px;
    }
    
    .bod-member {
        padding: 12px 0;
    }
}

/* Social Media Page Specific Styles */
.sm-intro {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 12px;
    margin: 0 0 3rem 0;
}

.sm-intro h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.sm-intro p {
    margin-bottom: 0;
    line-height: 1.8;
}

.sm-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.sm-platform-card {
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sm-platform-card:hover,
.sm-platform-card:focus {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.sm-platform-icon {
    font-size: 6rem;
    transition: var(--transition);
}

.sm-platform-card.sm-facebook .sm-platform-icon {
    color: #1877f2;
}

.sm-platform-card.sm-instagram .sm-platform-icon {
    color: #E4405F;
}

.sm-platform-card:hover .sm-platform-icon,
.sm-platform-card:focus .sm-platform-icon {
    transform: scale(1.1);
}

.sm-platform-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sm-platform-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.sm-platform-handle {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.sm-benefits {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 40px;
    margin: 3rem 0;
}

.sm-benefits h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sm-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-benefits li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sm-benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .sm-platforms {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sm-platform-card {
        padding: 40px 30px;
    }
    
    .sm-platform-icon {
        font-size: 5rem;
    }
}

/* Video Page Specific Styles - SCDHU_VID */
.scdhu-vid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.scdhu-vid-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scdhu-vid-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Responsive adjustments */
@media screen and (max-width: 640px) {
    .scdhu-vid-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
    .scdhu-vid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}