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

        body {
            font-family: 'Cairo', sans-serif;
            background: #F6F8F7;
            color: #2E3B33;
            line-height: 1.7;
        }

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #006C35;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #006C35, #00A651);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        .btn {
            padding: 10px 16px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #006C35;
            color: #006C35;
        }

        .page-hero {
            padding: 50px 20px 30px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F4F7F4 100%);
        }

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

        .page-title {
            font-size: 32px;
            font-weight: 800;
            color: #0B3B23;
        }

        .page-subtitle {
            color: #5C6D64;
            font-size: 15px;
            margin-top: 6px;
        }

        .content-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px 70px;
        }

        .site-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin: 20px 0 24px;
        }

        .site-card {
            background: #fff;
            border-radius: 14px;
            padding: 16px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        }

        .site-title {
            font-size: 16px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 6px;
        }

        .site-meta {
            font-size: 13px;
            color: #5C6D64;
        }

        .map-box {
            width: 100%;
            height: 750px;
            margin-top: 15px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
        }

        @media (max-width: 768px) {
            .map-box {
                height: 520px;
            }

            .page-title {
                font-size: 26px;
            }
        }
