   :root {
            --brand-green: #088534;
            --accent-yellow: #ffcf33;
            --white: #ffffff;
            --card-bg: rgba(255, 255, 255, 0.95);
        }

   
     body { font-family: 'Inter', sans-serif; background-color: #094051; }
        
    .bg-waste-primary { background-color: #094051; }
    .text-lime-accent { color: #bef264; }
    .bg-lime-accent { background-color: #bef264; }
    .glass-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .glow-shadow {
        box-shadow: 0 0 60px rgba(190, 242, 100, 0.08);
    }
    .no-scrollbar::-webkit-scrollbar { display: none; }
    .noise {
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

  .exh {
            background-color: var(--brand-green);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 50px 20px;
            color: var(--white);
        }


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

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h2 {
            font-size: 3rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: -1px;
            font-weight: 800;
            color: #fff;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 10px;
            color: aliceblue;
        }

        .header .divider {
            width: 80px;
            height: 5px;
            background: var(--accent-yellow);
            margin: 20px auto;
            border-radius: 10px;
        }

        /* Grid Layout */
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        /* Card Styling */
        .profile-card {
            background: var(--card-bg);
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .profile-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        /* Icon Wrapper */
        .icon-wrapper {
            width: 65px;
            height: 65px;
            background: var(--brand-green);
            color: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.7rem;
            transition: 0.3s;
        }

        .profile-card:hover .icon-wrapper {
            background: var(--accent-yellow);
            color: var(--brand-green);
            border-radius: 50%;
        }

        .profile-card h3 {
            color: #222;
            font-size: 1.05rem;
            margin: 0;
            line-height: 1.4;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 { font-size: 2rem; }
            .profile-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
            .profile-card { padding: 20px 15px; }
        }