    /* CSS Variables */
    :root {
        --primary-blue: #28c4f1;
        --primary-blue-dark: #1ea3d4;
        --white: #ffffff;
        --off-white: #fafbfc;
        --light-gray: #f8fafc;
        --medium-gray: #f1f5f9;
        --border-gray: #e2e8f0;
        --border-light: #f1f5f9;
        --dark-navy: #0f172a;
        --navy-light: #1e293b;
        --text-primary: #0f172a;
        --text-secondary: #475569;
        --text-muted: #64748b;
        --shadow-subtle: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-medium: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --shadow-large: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        --shadow-sharp: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        --error-red: #ef4444;
        --success-green: #10b981;
        --warning-orange: #f59e0b;
    }

    /* Reset and Base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        line-height: 1.7;
        color: var(--text-primary);
        background-color: var(--white);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Header - Consistent sizing */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gray);
        transition: all 0.3s ease;
    }

    .header.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
        border-bottom-color: var(--border-gray);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 1.25rem 3rem;
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    /* Consistent logo sizing across all pages */
    .logo-mark {
        height: 60px;
        width: auto;
        background-image: url('./LCC Logo White on Blue.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        min-width: 200px;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 3rem;
        align-items: center;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 1rem;
        position: relative;
        transition: all 0.2s ease;
        letter-spacing: -0.015em;
    }

    .nav-menu a.active {
        color: var(--primary-blue);
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-blue);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-blue);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        padding: 12px;
        border-radius: 6px;
        transition: all 0.2s ease;
        min-height: 44px;
        min-width: 44px;
    }

    .mobile-menu-toggle:hover {
        background-color: var(--light-gray);
    }

    /* Hero Section (Homepage) */
    .hero {
        background: 
            radial-gradient(ellipse 80% 50% at 20% -20%, rgba(40, 196, 241, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 50%, rgba(40, 196, 241, 0.05) 0%, transparent 60%),
            linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
        padding: 10rem 3rem 6rem;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 25% 25%, var(--primary-blue) 1px, transparent 1px),
            radial-gradient(circle at 75% 75%, var(--primary-blue) 1px, transparent 1px);
        background-size: 60px 60px;
        background-position: 0 0, 30px 30px;
        opacity: 0.03;
        pointer-events: none;
    }

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 6rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        font-family: 'Crimson Text', serif;
        font-size: clamp(3rem, 5.5vw, 4.5rem);
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.1;
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
    }

    .hero-content p {
        font-size: 1.375rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        line-height: 1.6;
        font-weight: 400;
    }

    .hero-actions {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-image {
        position: relative;
        height: 600px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-sharp);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

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

    /* Page Header (Other Pages) */
    .page-header {
        background: 
            radial-gradient(ellipse 80% 50% at 20% -20%, rgba(40, 196, 241, 0.08) 0%, transparent 60%),
            var(--light-gray);
        padding: 8rem 3rem 4rem;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 25% 25%, var(--primary-blue) 2px, transparent 2px),
            radial-gradient(circle at 75% 75%, var(--primary-blue) 1px, transparent 1px);
        background-size: 80px 80px, 60px 60px;
        background-position: 0 0, 30px 30px;
        opacity: 0.04;
        pointer-events: none;
    }

    .page-header-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        font-family: 'Crimson Text', serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .page-header p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        font-weight: 400;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Main Content */
    .main-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }

    .section {
        padding: 6rem 0;
    }

    .section-header {
        max-width: 800px;
        margin: 0 auto 4rem;
        text-align: center;
    }

    .section-eyebrow {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary-blue);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .section-title {
        font-family: 'Crimson Text', serif;
        font-size: clamp(2.25rem, 4vw, 3.25rem);
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .section-subtitle {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        font-weight: 400;
    }

    /* Buttons - Consistent styling */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.2s ease;
        cursor: pointer;
        border: none;
        letter-spacing: -0.01em;
        min-height: 44px;
        text-align: center;
    }

    .btn-primary {
        background-color: var(--primary-blue);
        color: var(--white);
        border: 1px solid var(--primary-blue);
    }

    .btn-primary:hover {
        background-color: var(--primary-blue-dark);
        border-color: var(--primary-blue-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-soft);
    }

    .btn-secondary {
        background-color: var(--white);
        color: var(--text-primary);
        border: 1px solid var(--border-gray);
    }

    .btn-secondary:hover {
        background-color: var(--light-gray);
        border-color: var(--text-muted);
        transform: translateY(-1px);
        box-shadow: var(--shadow-soft);
    }

    .btn-link {
        background: none;
        color: var(--text-secondary);
        padding: 0;
        font-weight: 500;
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 1px;
        border: none;
        min-height: auto;
    }

    .btn-link:hover {
        color: var(--primary-blue);
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .feature-card {
        background-color: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 3rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 8px 8px 0 0;
    }

    .feature-card:hover {
        box-shadow: var(--shadow-large);
        transform: translateY(-4px);
        border-color: var(--primary-blue);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        background-color: var(--light-gray);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        border: 1px solid var(--border-gray);
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
        color: var(--primary-blue);
        transition: color 0.3s ease;
    }

    .feature-card:hover .feature-icon svg {
        color: var(--white);
    }

    .feature-card h3 {
        font-size: 1.375rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
        letter-spacing: -0.015em;
    }

    .feature-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* Stats Section - Consistent across all pages */
    .stats-section {
        background: 
            linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
        padding: 5rem 3rem;
        border-radius: 8px;
        margin: 4rem 0;
        border: 1px solid var(--border-light);
    }

    .stats-grid, .stats-ticker {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background: var(--white);
        border-radius: 8px;
        border: 1px solid var(--border-gray);
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        border-color: var(--primary-blue);
    }

    .stat-number {
        font-family: 'Crimson Text', serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Story Grid (About page) */
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
        margin-bottom: 6rem;
    }

    .story-content h3 {
        font-family: 'Crimson Text', serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .story-content p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .story-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-large);
        border: 1px solid var(--border-gray);
    }

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

    /* Committee Grid */
    .committee-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .committee-grid .committee-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .committee-card {
        background-color: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .committee-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 8px 8px 0 0;
    }

    .committee-card:hover {
        box-shadow: var(--shadow-large);
        transform: translateY(-4px);
        border-color: var(--primary-blue);
    }

    .committee-card:hover::before {
        transform: scaleX(1);
    }

    .role-icon {
        width: 80px;
        height: 80px;
        background-color: var(--light-gray);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        border: 1px solid var(--border-gray);
        transition: all 0.3s ease;
    }

    .committee-card:hover .role-icon {
        background-color: var(--primary-blue);
        border-color: var(--primary-blue);
    }

    .role-icon svg {
        width: 40px;
        height: 40px;
        color: var(--primary-blue);
        transition: color 0.3s ease;
    }

    .committee-card:hover .role-icon svg {
        color: var(--white);
    }

    .committee-card h3 {
        font-size: 1.375rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        letter-spacing: -0.015em;
    }

    .role-title {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary-blue);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
    }

    .committee-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Vision Section */
    .vision-section {
        background: 
            linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
        padding: 5rem 3rem;
        border-radius: 8px;
        margin: 4rem 0;
        border: 1px solid var(--border-light);
        text-align: center;
    }

    .vision-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .vision-content h3 {
        font-family: 'Crimson Text', serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
    }

    .vision-content p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Membership Page Specific */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .benefit-card {
        background: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        border-radius: 8px 8px 0 0;
    }

    .benefit-card:hover {
        box-shadow: var(--shadow-large);
        transform: translateY(-4px);
        border-color: var(--primary-blue);
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
        background: var(--light-gray);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-gray);
        transition: all 0.3s ease;
    }

    .benefit-card:hover .benefit-icon {
        background: var(--primary-blue);
        border-color: var(--primary-blue);
        transform: scale(1.05);
    }

    .benefit-icon svg {
        width: 32px;
        height: 32px;
        color: var(--primary-blue);
        transition: all 0.3s ease;
    }

    .benefit-card:hover .benefit-icon svg {
        color: var(--white);
    }

    .benefit-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
        letter-spacing: -0.015em;
    }

    .benefit-card p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .benefit-details {
        list-style: none;
        margin-top: 1rem;
    }

    .benefit-details li {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .benefit-details li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary-blue);
        font-weight: 600;
    }

    /* Call to Action Section */
    .cta-section {
        background: var(--medium-gray);
        padding: 4rem 3rem;
        border-radius: 8px;
        margin: 4rem 0;
        border: 1px solid var(--border-light);
        text-align: center;
    }

    .cta-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-content h3 {
        font-family: 'Crimson Text', serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .cta-content p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* Forms - Consistent styling */
    .membership-form-section,
    .contact-section {
        background: 
            radial-gradient(ellipse 60% 50% at 40% 20%, rgba(40, 196, 241, 0.08) 0%, transparent 60%),
            linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
        padding: 5rem 0;
        border-top: 1px solid var(--border-gray);
    }

    .form-container,
    .contact-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 3rem;
    }

    .membership-form,
    .contact-form {
        background-color: var(--white);
        border-radius: 8px;
        padding: 3rem;
        box-shadow: var(--shadow-large);
        border: 1px solid var(--border-gray);
        max-width: 800px;
        margin: 0 auto;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
        margin: 0;
    }

    .form-label {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .form-input, .form-select {
        padding: 1rem;
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: var(--white);
        font-family: inherit;
        min-height: 44px;
    }

    .form-input:focus, .form-select:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(40, 196, 241, 0.1);
    }

    .form-input[aria-invalid="true"], .form-select[aria-invalid="true"] {
        border-color: var(--error-red);
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin: 2rem 0;
    }

    .form-checkbox input[type="checkbox"] {
        margin-top: 0.25rem;
        accent-color: var(--primary-blue);
        min-width: 16px;
        min-height: 16px;
    }

    .form-checkbox label {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    /* Newsletter - Consistent styling */
    .newsletter {
        background-color: var(--dark-navy);
        color: var(--white);
        border-radius: 8px;
        padding: 4rem 3rem;
        text-align: center;
        margin: 4rem auto;
        border: 1px solid var(--navy-light);
        max-width: 1200px;
    }

    .newsletter h3 {
        font-family: 'Crimson Text', serif;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .newsletter p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2.5rem;
        font-size: 1.125rem;
    }

    .newsletter-form {
        display: flex;
        max-width: 400px;
        margin: 0 auto;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
    }

    .newsletter-form input {
        flex: 1;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 0;
        font-size: 1rem;
        background: var(--white);
        color: var(--text-primary);
        min-height: 44px;
    }

    .newsletter-form input:focus {
        outline: none;
        box-shadow: inset 0 0 0 2px var(--primary-blue);
    }

    .newsletter-form .btn {
        border-radius: 0;
        border: none;
        white-space: nowrap;
    }

    /* Events Page Specific */
    .calendar-tabs {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        border-bottom: 1px solid var(--border-gray);
    }

    .tab-button {
        padding: 1rem 2rem;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-weight: 500;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        min-height: 44px;
    }

    .tab-button.active {
        color: var(--primary-blue);
        border-bottom-color: var(--primary-blue);
    }

    .tab-button:hover {
        color: var(--primary-blue);
    }

    .calendar-view {
        background: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 2rem;
        margin-bottom: 3rem;
        display: none;
    }

    .calendar-view.active {
        display: block;
    }

    .calendar-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }

    .calendar-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .calendar-nav button {
        background: none;
        border: 1px solid var(--border-gray);
        padding: 0.75rem;
        border-radius: 6px;
        cursor: pointer;
        color: var(--text-secondary);
        transition: all 0.2s ease;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .calendar-nav button:hover {
        background: var(--light-gray);
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    .calendar-month {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        min-width: 200px;
        text-align: center;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 1px;
        background: var(--border-gray);
        border-radius: 8px;
        overflow: hidden;
    }

    .calendar-day-header {
        background: var(--medium-gray);
        padding: 1rem;
        text-align: center;
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .calendar-day {
        background: var(--white);
        min-height: 120px;
        padding: 0.75rem;
        position: relative;
        border: none;
    }

    .calendar-day.other-month {
        background: var(--light-gray);
        color: var(--text-muted);
    }

    .calendar-day.today {
        background: linear-gradient(135deg, rgba(40, 196, 241, 0.15) 0%, rgba(40, 196, 241, 0.25) 100%);
        border: 2px solid var(--primary-blue);
        position: relative;
    }

    .calendar-day-number {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .calendar-day.today .calendar-day-number {
        color: var(--primary-blue);
        font-weight: 700;
    }

    .calendar-event {
        background: var(--primary-blue);
        color: var(--white);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        cursor: pointer;
        transition: all 0.2s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.2;
    }

    .calendar-event:hover,
    .calendar-event:focus {
        background: var(--primary-blue-dark);
        transform: translateY(-1px);
        outline: 2px solid var(--primary-blue);
        outline-offset: 2px;
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .event-card {
        background: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
    }

    .event-card:hover {
        box-shadow: var(--shadow-large);
        transform: translateY(-4px);
        border-color: var(--primary-blue);
    }

    .event-image {
        width: 100%;
        height: 200px;
        background: var(--medium-gray);
        position: relative;
        overflow: hidden;
    }

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

    .event-date-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--primary-blue);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.875rem;
    }

    .event-content {
        padding: 2rem;
    }

    .event-category {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary-blue);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .event-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .event-description {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .event-details {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .event-detail {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .event-detail svg {
        width: 16px;
        height: 16px;
        color: var(--primary-blue);
        flex-shrink: 0;
    }

    .event-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Directory Page Specific */
    .directory-controls {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .search-box {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .search-input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        font-size: 1rem;
        background: var(--white);
        transition: all 0.2s ease;
        min-height: 44px;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(40, 196, 241, 0.1);
    }

    .search-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        width: 20px;
        height: 20px;
        pointer-events: none;
    }

    .industry-filter {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        border: 1px solid var(--border-gray);
        background: var(--white);
        color: var(--text-secondary);
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.2s ease;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--primary-blue);
        color: var(--white);
        border-color: var(--primary-blue);
    }

    .industry-section {
        margin-bottom: 4rem;
    }

    .industry-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--border-gray);
    }

    .industry-icon {
        width: 48px;
        height: 48px;
        background: var(--primary-blue);
        color: var(--white);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .industry-title {
        font-family: 'Crimson Text', serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }

    .industry-count {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-left: auto;
    }

    .members-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }

    .member-card {
        background: var(--white);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        min-height: 280px;
    }

    .member-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 8px 8px 0 0;
    }

    .member-card:hover {
        box-shadow: var(--shadow-large);
        transform: translateY(-4px);
        border-color: var(--primary-blue);
    }

    .member-card:hover::before {
        transform: scaleX(1);
    }

    .member-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .member-logo {
        width: 60px;
        height: 60px;
        background: var(--light-gray);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--primary-blue);
        font-size: 1.5rem;
        border: 1px solid var(--border-gray);
        flex-shrink: 0;
    }

    .member-info h4 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .member-industry {
        font-size: 0.875rem;
        color: var(--primary-blue);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .member-details {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .member-detail {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .member-detail svg {
        width: 16px;
        height: 16px;
        color: var(--primary-blue);
        flex-shrink: 0;
    }

    .member-detail a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.2s ease;
        word-break: break-all;
    }

    .member-detail a:hover {
        color: var(--primary-blue);
    }

    .member-description {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-top: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Loading and Status */
    .api-status {
        background: var(--light-gray);
        border: 1px solid var(--border-gray);
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        color: var(--text-muted);
        text-align: center;
    }

    .loading {
        text-align: center;
        padding: 4rem;
        color: var(--text-muted);
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid var(--border-gray);
        border-top: 3px solid var(--primary-blue);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 1rem;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .no-events, .no-members {
        text-align: center;
        padding: 4rem;
        color: var(--text-muted);
        background: var(--light-gray);
        border-radius: 8px;
        border: 1px solid var(--border-gray);
    }

    .no-events h3, .no-members h3 {
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        padding: 2rem 0;
        flex-wrap: wrap;
    }

    .pagination-button {
        padding: 0.75rem 1.5rem;
        border: 1px solid var(--border-gray);
        background: var(--white);
        color: var(--text-secondary);
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.2s ease;
        text-decoration: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .pagination-button:hover:not(:disabled) {
        background: var(--light-gray);
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    .pagination-button.active {
        background: var(--primary-blue);
        color: var(--white);
        border-color: var(--primary-blue);
    }

    .pagination-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-info {
        color: var(--text-muted);
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
    }

    /* Thank You Page Specific */
    .thankyou-hero {
        background: 
            radial-gradient(ellipse 80% 50% at 20% -20%, rgba(40, 196, 241, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 60% 50% at 80% 50%, rgba(40, 196, 241, 0.05) 0%, transparent 60%),
            linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
        padding: 10rem 3rem 6rem;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .thankyou-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 25% 25%, var(--primary-blue) 1px, transparent 1px),
            radial-gradient(circle at 75% 75%, var(--primary-blue) 1px, transparent 1px);
        background-size: 60px 60px;
        background-position: 0 0, 30px 30px;
        opacity: 0.03;
        pointer-events: none;
    }

    .thankyou-content {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
        background: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        animation: checkmark 0.6s ease-in-out;
    }

    @keyframes checkmark {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .thankyou-icon svg {
        width: 40px;
        height: 40px;
        color: var(--white);
    }

    .thankyou-title {
        font-family: 'Crimson Text', serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    .thankyou-subtitle {
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 3rem;
    }

    .thankyou-section {
        padding: 4rem 0;
    }

    .next-steps {
        background: var(--white);
        border-radius: 8px;
        padding: 3rem;
        box-shadow: var(--shadow-large);
        border: 1px solid var(--border-gray);
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .next-steps h3 {
        font-family: 'Crimson Text', serif;
        font-size: 1.75rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .steps-list {
        list-style: none;
        padding: 0;
    }

    .steps-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-light);
    }

    .steps-list li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .step-number {
        background: var(--primary-blue);
        color: var(--white);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .step-content h4 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .step-content p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-info {
        background: var(--light-gray);
        border-radius: 8px;
        padding: 2rem;
        text-align: center;
        border: 1px solid var(--border-gray);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info h4 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .contact-info p {
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .contact-info a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 500;
    }

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

    .action-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Cookie Policy Specific */
    .cookie-consent-manager {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 8px;
        margin: 2rem 0;
        border: 1px solid var(--border-gray);
    }

    .cookie-consent-manager h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .cookie-consent-manager .btn {
        margin: 0.5rem;
    }

    /* Footer - Consistent styling */
    .footer {
        background-color: var(--dark-navy);
        color: var(--white);
        padding: 5rem 0 2rem;
        border-top: 1px solid var(--navy-light);
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }

    .footer-brand h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
        color: var(--white);
        background-image: url('./LCC Logo White.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        text-indent: -9999px;
        height: 50px;
        width: 180px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
    }

    .footer-section a,
    .footer-section p {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        margin-bottom: 0.75rem;
        display: block;
        transition: all 0.2s ease;
        line-height: 1.5;
    }

    .footer-section a:hover {
        color: var(--primary-blue);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        padding: 2rem 3rem 0;
        margin-top: 3rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-bottom a:hover {
        color: var(--primary-blue);
    }

    /* Responsive Design - Mobile First Approach */
    @media (max-width: 1200px) {
        .nav-container, .main-content, .footer-content, .form-container, .contact-container {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .hero, .page-header {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .hero-container {
            gap: 4rem;
        }

        .story-grid {
            gap: 4rem;
        }
    }

    @media (max-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .features-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .members-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
    }

    @media (max-width: 768px) {
        /* Navigation */
        .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            padding: 2rem;
            box-shadow: var(--shadow-medium);
            border-radius: 0 0 8px 8px;
            gap: 1.5rem;
            border-top: 1px solid var(--border-gray);
        }

        .nav-menu.active {
            display: flex;
        }

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

        /* Logo sizing */
        .logo-mark {
            min-width: 140px;
            height: 45px;
        }

        .footer-brand h4 {
            width: 140px;
            height: 40px;
        }

        /* Layout adjustments */
        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

        .hero-image {
            height: 400px;
            order: -1;
        }

        .hero-actions {
            justify-content: center;
        }

        .story-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .committee-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }

        .committee-grid .committee-card:last-child {
            max-width: none;
        }

        /* Forms */
        .form-grid {
            grid-template-columns: 1fr;
        }

        .membership-form,
        .contact-form {
            padding: 2rem;
        }

        /* Newsletter */
        .newsletter {
            padding: 2.5rem 1.5rem;
        }

        .newsletter-form {
            flex-direction: column;
            max-width: 300px;
        }

        .newsletter-form input,
        .newsletter-form .btn {
            border-radius: 8px;
        }

        /* Footer */
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        /* Grids */
        .features-grid,
        .events-grid,
        .members-grid,
        .benefits-grid {
            grid-template-columns: 1fr;
        }

        /* Stats */
        .stats-grid,
        .stats-ticker {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        /* Calendar */
        .calendar-tabs {
            flex-direction: column;
            align-items: center;
        }

        .calendar-day {
            min-height: 80px;
            padding: 0.5rem;
        }

        .calendar-event {
            font-size: 0.7rem;
            padding: 0.2rem 0.4rem;
        }

        /* Directory */
        .directory-controls {
            flex-direction: column;
            align-items: stretch;
        }

        .search-box {
            min-width: auto;
        }

        .industry-filter {
            justify-content: center;
        }

        .industry-header {
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .industry-title {
            font-size: 1.5rem;
        }

        /* Thank you page */
        .thankyou-hero {
            padding: 8rem 2rem 4rem;
        }

        .next-steps {
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .contact-info {
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .action-buttons {
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .action-buttons .btn {
            min-width: 200px;
        }

        /* Event cards */
        .event-content {
            padding: 1.5rem;
        }

        .event-actions {
            flex-direction: column;
            gap: 0.75rem;
        }

        .event-actions .btn {
            text-align: center;
        }

        /* Pagination */
        .pagination {
            flex-direction: column;
            gap: 1rem;
        }

        .pagination-info {
            order: -1;
        }
    }

    @media (max-width: 480px) {
        /* Base spacing */
        .nav-container {
            padding: 1rem;
        }

        .main-content {
            padding: 0 1rem;
        }

        .hero {
            padding: 6rem 1rem 4rem;
        }

        .page-header {
            padding: 5rem 1rem 3rem;
        }

        /* Logo sizing */
        .logo-mark {
            min-width: 120px;
            height: 40px;
        }

        .footer-brand h4 {
            width: 120px;
            height: 35px;
        }

        /* Forms */
        .contact-form,
        .membership-form {
            padding: 1.5rem;
        }

        .newsletter {
            padding: 2rem 1rem;
        }

        /* Cards */
        .feature-card,
        .benefit-card,
        .member-card {
            padding: 1.5rem;
        }

        .committee-card {
            padding: 2rem;
        }

        /* Sections */
        .stats-section,
        .vision-section,
        .cta-section {
            padding: 3rem 2rem;
        }

        .event-content {
            padding: 1.25rem;
        }

        /* Stats */
        .stats-ticker,
        .stats-grid {
            flex-direction: column;
            gap: 1.5rem;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 1.75rem;
        }

        /* Calendar */
        .calendar-view {
            padding: 1rem;
        }

        .calendar-day {
            min-height: 60px;
            padding: 0.25rem;
        }

        .calendar-day-header {
            padding: 0.5rem;
            font-size: 0.75rem;
        }

        .calendar-event {
            font-size: 0.65rem;
            padding: 0.15rem 0.3rem;
        }

        /* Member cards */
        .member-card {
            min-height: auto;
            padding: 1.25rem;
        }

        .member-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.75rem;
        }

        .member-logo {
            width: 50px;
            height: 50px;
            font-size: 1.25rem;
        }

        /* Thank you page */
        .thankyou-hero {
            padding: 6rem 1rem 3rem;
        }

        .next-steps {
            padding: 1.5rem;
        }

        .contact-info {
            padding: 1.25rem;
        }

        /* Industry headers */
        .industry-header {
            align-items: flex-start;
        }

        .industry-icon {
            width: 40px;
            height: 40px;
        }

        .industry-title {
            font-size: 1.25rem;
        }

        /* Button improvements */
        .btn {
            padding: 0.875rem 1.5rem;
            font-size: 0.95rem;
        }

        .action-buttons .btn {
            min-width: 180px;
        }

        /* Search and filters */
        .search-input {
            padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        }

        .search-icon {
            left: 0.875rem;
            width: 18px;
            height: 18px;
        }

        .filter-btn {
            padding: 0.625rem 1.25rem;
            font-size: 0.85rem;
        }
    }

    /* SEO and Accessibility Improvements */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Skip to main content link */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-blue);
        color: var(--white);
        padding: 8px 16px;
        text-decoration: none;
        z-index: 100;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

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

    /* Focus styles for better accessibility */
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    a:focus-visible,
    .calendar-event:focus-visible {
        outline: 2px solid var(--primary-blue);
        outline-offset: 2px;
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
        :root {
            --primary-blue: #0066cc;
            --primary-blue-dark: #004499;
            --text-primary: #000000;
            --text-secondary: #333333;
            --border-gray: #666666;
        }
    }

    /* Reduced motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }

        .loading-spinner {
            animation: none;
        }

        .checkmark {
            animation: none;
        }
    }

    /* Print styles */
    @media print {
        .header,
        .footer,
        .mobile-menu-toggle,
        .btn,
        .newsletter,
        .loading,
        .api-status {
            display: none;
        }

        .main-content {
            margin-top: 0;
            padding: 0;
        }

        .page-header {
            margin-top: 0;
            background: none;
            padding: 2rem 0;
        }

        .feature-card,
        .member-card,
        .event-card {
            border: 1px solid #ccc;
            box-shadow: none;
            page-break-inside: avoid;
            margin-bottom: 1rem;
        }

        a {
            text-decoration: underline;
        }

        .hero-image img,
        .story-image img,
        .event-image img {
            max-height: 300px;
            object-fit: contain;
        }
    }

    /* Error states */
    .error-message {
        color: var(--error-red);
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: block;
    }

    .success-message {
        color: var(--success-green);
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: block;
    }

    .warning-message {
        color: var(--warning-orange);
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: block;
    }

    /* Notification system */
    .notification {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        box-shadow: var(--shadow-large);
        z-index: 10000;
        font-weight: 500;
        max-width: 400px;
        word-wrap: break-word;
        transition: all 0.3s ease;
    }

    .notification-success {
        background: var(--success-green);
        color: var(--white);
    }

    .notification-error {
        background: var(--error-red);
        color: var(--white);
    }

    .notification-warning {
        background: var(--warning-orange);
        color: var(--white);
    }

    .notification-info {
        background: var(--primary-blue);
        color: var(--white);
    }

    /* Table styles for cookie/privacy pages */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    table thead {
        display: table-header-group;
    }

    table tbody {
        display: table-row-group;
    }

    table tr {
        display: table-row;
    }

    table th,
    table td {
        display: table-cell;
        padding: 1rem;
        text-align: left;
        border: 1px solid var(--border-gray);
        word-wrap: break-word;
        white-space: normal;
    }

    table th {
        background: var(--light-gray);
        font-weight: 600;
        color: var(--text-primary);
    }

    table tbody tr:nth-child(even) {
        background: var(--off-white);
    }

    /* Responsive table */
    @media (max-width: 768px) {
        table {
            font-size: 0.875rem;
        }

        table th,
        table td {
            padding: 0.75rem 0.5rem;
        }
    }

    /* Address styling */
    address {
        font-style: normal;
        line-height: 1.6;
    }

    address a {
        color: inherit;
        text-decoration: none;
    }

    address a:hover {
        color: var(--primary-blue);
        text-decoration: underline;
    }

    /* Remove phone/email icons on very small screens */
    @media (max-width: 480px) {
        a[href^="tel:"]::before,
        a[href^="mailto:"]::before {
            display: none;
        }
    }