


        .subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        #ghana-map {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
        }

        .region {
            text-align: center;
            fill: #FDB927;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linejoin: round;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }

        .region:hover {
             text-align: center;
            fill: #CE1141;
            stroke: #FDB927;
            stroke-width: 3.5;
            filter: drop-shadow(0 5px 15px rgba(206, 17, 65, 0.5));
        }

        .region.active {
            fill: #CE1141;
            stroke: #FDB927;
            stroke-width: 3.5;
        }

        .info-panel {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            width: 90%;
            max-width: 600px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border: 3px solid #FDB927;
        }

        .info-panel.visible {
            transform: translateX(-50%) translateY(0);
        }

        .info-panel h2 {
            color: #CE1141;
            font-size: 1.8rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .info-panel h3 {
            color: #FDB927;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .info-panel p {
            color: #444;
            line-height: 1.7;
            font-size: 1rem;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #CE1141;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-btn:hover {
            background: #a00e34;
            transform: rotate(90deg);
        }

        .legend {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #555;
        }

        .legend-color {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }

            .container {
                padding: 20px;
            }

            .info-panel {
                padding: 20px;
                max-width: 95%;
            }

            .info-panel h2 {
                font-size: 1.4rem;
            }

            .info-panel h3 {
                font-size: 1.1rem;
            }

            .legend {
                gap: 15px;
            }
        }

        .tap-hint {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 20px;
            font-style: italic;
        }
   