        :root {
            --mountain-meadow: #13b267;
            --moon-mist: #dfe1d1;
            --gamboge: #e5a309;
            --bombay: #abacad;
            --buttercup: #f7c011;
            --quill-gray: #dadad9;
            --granite-green: #8c897c;
            --eucalyptus: #207c49;
            --thunder: #261f25;
            --sea-green: #2ea453;
            --nandor: #575a58;
            --mid-gray: #6c6c74;
            --mantis: #73c053;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: var(--thunder);
            line-height: 1.6;
        }

        .page-title02 {
            background-color: var(--sea-green);
            padding: 30px 0;
            margin-bottom: 30px;
        }

        .container02 {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-title02 h1 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .breadcrumb02 {
            list-style: none;
            display: flex;
            gap: 10px;
        }

        .breadcrumb02 li {
            font-size: 0.9rem;
        }

        .breadcrumb02 a {
            color: var(--moon-mist);
            text-decoration: none;
        }

        .breadcrumb02 a:hover {
            color: var(--buttercup);
        }

        .community-container {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
        }

        .filter-sidebar {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 25px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .filter-sidebar h2 {
            color: var(--thunder);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--moon-mist);
            font-size: 1.5rem;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 100%;
            padding: 15px;
            margin-bottom: 12px;
            background: white;
            border: 2px solid var(--quill-gray);
            border-radius: 8px;
            color: var(--thunder);
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .filter-btn:hover {
            border-color: var(--mountain-meadow);
            background-color: rgba(19, 178, 103, 0.05);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            border-color: var(--mountain-meadow);
            background-color: rgba(19, 178, 103, 0.1);
        }

        .filter-btn i {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            color: var(--mountain-meadow);
        }

        .content-area {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 30px;
            max-width: 1000px
        }

        .content-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--moon-mist);
        }

        .content-header h1 {
            color: var(--thunder);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .content-header p {
            color: var(--nandor);
            font-size: 1.1rem;
        }

        .content-section {
            display: none;
        }

        .content-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .section-title {
            color: var(--thunder);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--moon-mist);
        }

        .faq-item {
            margin-bottom: 25px;
            border: 1px solid var(--quill-gray);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 18px 20px;
            background: var(--moon-mist);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--quill-gray);
        }

        .faq-answer {
            padding: 20px;
            background: white;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .opportunity-card {
            border: 1px solid var(--quill-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .opportunity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .opportunity-header {
            background: var(--mountain-meadow);
            color: white;
            padding: 15px 20px;
        }

        .opportunity-header h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .opportunity-body {
            padding: 20px;
        }

        .opportunity-details {
            margin-bottom: 20px;
        }

        .opportunity-detail {
            display: flex;
            margin-bottom: 8px;
        }

        .detail-label {
            font-weight: 600;
            width: 120px;
            color: var(--nandor);
        }

        .opportunity-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: var(--mountain-meadow);
            color: white;
        }

        .btn-primary:hover {
            background: var(--eucalyptus);
        }

        .btn-secondary {
            background: var(--gamboge);
            color: white;
        }

        .btn-secondary:hover {
            background: #d19408;
        }

        .feedback-container-09 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .feedback-option-09 {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--mountain-meadow);
        }

        .feedback-option-09:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .option-header-09 {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .option-icon-09 {
            width: 50px;
            height: 50px;
            background: var(--mountain-meadow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .issue-09 .option-icon-09 {
            background: var(--gamboge);
        }

        .option-title-09 {
            font-size: 1.5rem;
            color: var(--thunder);
        }

        .option-description-09 {
            color: var(--nandor);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .form-group-09 {
            margin-bottom: 20px;
        }

        .form-group-09 label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--thunder);
        }

        .required-09::after {
            content: " *";
            color: #e74c3c;
        }

        .form-control-09 {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--bombay);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background-color: white;
        }

        .form-control-09:focus {
            outline: none;
            border-color: var(--mountain-meadow);
        }

        textarea.form-control-09 {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn-09 {
            background: var(--mountain-meadow);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn-09:hover {
            background: var(--eucalyptus);
            transform: translateY(-2px);
        }

        .issue-09 .submit-btn-09 {
            background: var(--gamboge);
        }

        .issue-09 .submit-btn-09:hover {
            background: #d19408;
        }

        .suggestions-list {
            display: grid;
            gap: 20px;
        }

        .suggestion-card {
            border: 1px solid var(--quill-gray);
            border-radius: 8px;
            padding: 20px;
            background: white;
        }

        .suggestion-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .suggestion-title {
            font-weight: 600;
            color: var(--thunder);
            font-size: 1.2rem;
        }

        .suggestion-category {
            background: var(--moon-mist);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--nandor);
        }

        .suggestion-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--mid-gray);
        }

        .suggestion-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-pending {
            background: rgba(229, 163, 9, 0.2);
            color: var(--gamboge);
        }

        .status-reviewed {
            background: rgba(19, 178, 103, 0.2);
            color: var(--mountain-meadow);
        }

        .status-implemented {
            background: rgba(32, 124, 73, 0.2);
            color: var(--eucalyptus);
        }

        .contact-info-09 {
            background: var(--moon-mist);
            border-radius: 12px;
            padding: 25px;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info-09 h3 {
            color: var(--thunder);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .contact-details-09 {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .contact-item-09 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--nandor);
        }

        .contact-icon-09 {
            color: var(--mountain-meadow);
            font-size: 1.2rem;
        }


         @media (max-width: 992px) {
            .community-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .filter-sidebar {
                position: static;
            }
            
            .feedback-container-09 {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .page-title02 h1 {
                font-size: 1.8rem;
            }
            
            .content-area {
                padding: 20px;
            }
            
            .content-header h1 {
                font-size: 1.7rem;
            }
            
            .opportunities-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-btn {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .container02, .community-container {
                padding: 0 15px;
            }
            
            .page-title02 {
                padding: 20px 0;
            }
            
            .page-title02 h1 {
                font-size: 1.6rem;
            }
            
            .content-header h1 {
                font-size: 1.5rem;
            }
            
            .option-header-09 {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .contact-details-09 {
                flex-direction: column;
                gap: 15px;
            }
            
            .suggestion-header {
                flex-direction: column;
                gap: 10px;
            }
        }