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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
        }

        /* Header Navigation */
        header {
            background: #fff;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            background: #005f9e;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-top a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .header-top a:hover {
            text-decoration: underline;
        }

        nav {
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #005f9e;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #005f9e;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #005f9e 0%, #0077be 100%);
            color: white;
            padding: 4rem 2rem;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 800px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .intro-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .intro-section p {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .section-title {
            font-size: 2rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

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

        .community-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .community-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background-color: #e6f2ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            fill: #005f9e;
        }

        .community-card h3 {
            font-size: 1.5rem;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .community-card p {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .card-link {
            display: inline-block;
            color: #005f9e;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }

        .card-link:hover {
            color: #004578;
            text-decoration: underline;
        }

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

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

        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #005f9e 0%, #0077be 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-date {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }

        .blog-card h4 {
            font-size: 1.125rem;
            color: #1f2937;
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .blog-card h4 a {
            color: #1f2937;
            text-decoration: none;
        }

        .blog-card h4 a:hover {
            color: #005f9e;
        }

        .blog-author {
            font-size: 0.9375rem;
            color: #6b7280;
        }

        .cta-section {
            background: linear-gradient(135deg, #005f9e 0%, #0077be 100%);
            color: white;
            padding: 3rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 3rem;
        }

        .cta-section h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            opacity: 0.95;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 0.875rem 2rem;
            background-color: white;
            color: #005f9e;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            margin: 0 0.5rem;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #e6f2ff;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 50px 0 30px;
            margin-top: 4rem;
        }

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

        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            color: #aaa;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .community-grid {
                grid-template-columns: 1fr;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

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