#fw-section-custom-html-688aef2d-3518-4c33-9078-0f08929b35ce {

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        p {
            color: #d1d5db;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        p:last-child {
            margin-bottom: 0;
        }

        strong {
            color: #ffffff;
            font-weight: 600;
        }

        em {
            color: #ffffff;
            font-style: italic;
        }

        .section {
            background-color: #121212;
            padding: 2rem;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
        }

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

        .member-card {
            background-color: #121212;
            border: 1px solid #374151;
            border-radius: 0.5rem;
            padding: 1.5rem;
        }

        .mission-section {
            text-align: center;
        }

        .mission-section p {
            color: #ffffff;
        }

        /* Tablet and up */
        @media (min-width: 768px) {
            .container {
                padding: 3rem 1.5rem;
            }

            h1 {
                font-size: 3rem;
            }

            .members-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .container {
                padding: 3rem 2rem;
            }
        }
}

#fw-section-custom-html-291e6c08-fc14-405a-93ff-f599777bc6fa {

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2rem;
        }

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

        .intro-text {
            color: #d1d5db;
            margin-bottom: 2rem;
            line-height: 1.75;
        }

        .info-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .icon {
            width: 24px;
            height: 24px;
            color: #ffffff;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .info-label {
            font-weight: 600;
            color: #ffffff;
            display: block;
            margin-bottom: 0.25rem;
        }

        .info-text {
            color: #d1d5db;
            display: block;
            margin-bottom: 0.75rem;
        }

        .email-link {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 2px;
            word-break: break-all;
        }

        .email-link:hover {
            color: #d1d5db;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            color: #d1d5db;
            transition: color 0.2s;
        }

        .social-icon:hover {
            color: #ffffff;
        }

        /* Form Styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

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

        .form-label {
            display: block;
            font-size: 1rem;
            font-weight: 500;
            color: #d1d5db;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #374151;
            border-radius: 0.5rem;
            background-color: transparent;
            color: #ffffff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.2s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #6b7280;
            box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #6b7280;
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            width: 100%;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff;
            background-color: transparent;
            border: 1px solid #ffffff;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .submit-button:hover {
            background-color: #ffffff;
            color: #000000;
        }

        .submit-button:active {
            transform: scale(0.98);
        }

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

        /* Success/Error Message Styles */
        #result {
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            text-align: center;
        }

        .success-message {
            background-color: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #4ade80;
        }

        .error-message {
            background-color: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #f87171;
        }

        .hidden {
            display: none !important;
        }

        /* Tablet and up */
        @media (min-width: 768px) {
            .container {
                padding: 3rem 1.5rem;
            }

            h1 {
                font-size: 3rem;
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .container {
                padding: 3rem 2rem;
            }

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





#fw-section-footer {

/* 1. Force the main container to fill the screen */
.page {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    margin: 0 !important;
}

/* 2. Target the content area between header and footer */
/* In your HTML, this is the div with class "page_main" */
.page_main {
    flex: 1 0 auto !important;
}

/* 3. Ensure the footer stays at the bottom and doesn't shrink */
.page_footer {
    flex-shrink: 0 !important;
    margin-top: auto !important;
}

/* 4. Fix for Fourthwall's internal wrappers */
#fw-section-footer {
    margin-top: auto !important;
}
}
#fw-section-header {

/* Targets the navigation links in your header */
.header__link, 
header nav a, 
.header__menu-item {
    font-size: 16px;           /* Adjust the size */
    font-weight: 500;          /* 400 is normal, 700 is bold, 900 is extra bold */
    text-transform: uppercase; /* Makes all letters capital */
    letter-spacing: 1px;       /* Optional: adds space between capital letters */
}

/* Targets the Site Title/Logo text specifically (if applicable) */
.header__logo-text,
.header__title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
}