body {
            font-family: sans-serif;
            line-height: 1.6;
            margin: 0px;
            background-color: #f4f4f4;
            color: #000;
        }
        .container {
            max-width: 800px;
            font-size: 1rem;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 2px 3px 2px 3px black;
            color: #000;
            margin: 10px;
            padding: 20px;
            text-align: ce;
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
        }
        h2 {
            color: #007bff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        h2 svg {
            margin-right: 10px;
        }
        .mission-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .mission-item svg {
            margin-right: 15px;
            font-size: 1.2em;
            color: #28a745;
        }
        .resource-links {
            margin-top: 25px;
        }
        .resource-links h3 {
            color: #007bff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .resource-links h3 svg {
            margin-right: 10px;
        }
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .logo-item {
            text-align: center;
        }
        .logo-item a {
            display: block;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s ease-in-out;
        }
        .logo-item a:hover {
            transform: scale(1.05);
        }
        .logo-item img {
            max-width: 100%;
            height: auto;
            opacity: 0.8;
            transition: opacity 0.3s ease-in-out;
        }
        .logo-item a:hover img {
            opacity: 1;
        }
        .connect-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            text-align: center;
        }
        .connect-section h2 {
            justify-content: center;
        }
        .illustration {
            text-align: center;
            margin-bottom: 20px;
        }
        .illustration img {
            max-width: 100%;
            height: auto;
        }
        /* Placeholder for icons - you'll need to integrate an icon library like Font Awesome or use SVG icons */
        .icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            vertical-align: middle;
            margin-right: 5px;
            font-size: 1rem;
            /* You'd set background images or SVG here */
            background-color: #ccc; /* Placeholder */
            border-radius: 50%; /* Example styling */
        }
        .learn-icon { background-color: #6610f2; }
        .connect-icon { background-color: #007bff; }
        .innovate-icon { background-color: #dc3545; }
        .advocate-icon { background-color: #ffc107; }
        .resources-icon { background-color: #17a2b8; }
        .community-icon { background-color: #28a745; }